PRODUTOS.HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<TItle>Produtos - Barbearia Alura</TItle>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="produtos.css">
</head>
<body>
<header>
<div class="caixa">
<h1><img src="imagens/logo.png" alt=""></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="produtos.html"> Produtos</a></li>
<li><a href="contato.html"> Contato</a></li>
</ul>
</nav>
</div>
</header>
</body>
</html>
PRODUTOS.CSS
header{
background: #bbbbbb;
padding: 20px 0;
}
.caixa{
position: relative;
width: 940px;
margin: 0 auto;
}
nav li{
display: inline;
margin: 0 0 0 15px;
}
nav{
position: absolute;
top: 110px;
right: 0;
}
nav a{
text-transform: uppercase;
color: black;
font-weight: bold;
font-size: 22px;
text-decoration: none;
}