HTML E Css Na Prática

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 28

HTML E CSS NA PRÁTICA

HTML E CSS NA PRÁTICA


HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="folhadeestilo.css">
</head>
<body>
<div class="container-principal">
<header>

</header>
</div>
</body>
</html>
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="folhadeestilo.css">
</head>
<body>
<div class="container-principal">
<header>
<div class="logo">
<a href="index.html"></a>
</div>
</header>
</div>
</body>
</html>
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="folhadeestilo.css">
</head>
<body>
<div class="container-principal">
<header>
<div class="logo">
<a href="index.html">
<img src="imagem/logo.png" alt="logo site">
</a>
</div>
</header>
</div>
</body>
</html>
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="folhadeestilo.css">
</head>
<body>
<div class="container-principal">
<header>
<div class="logo">
<a href="index.html">
<img src="imagem/logo.png" alt="logo site">
</a>
</div>

<nav>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="clientes.html">clientes</a></li>
<li><a href="sobre.html">sobre</a></li>
<li><a href="contato.html">contato</a></li>
</ul>
</nav>

</header>
</div>
</body>
</html>
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA
HTML E CSS NA PRÁTICA

You might also like