<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>
<h1> <img src="logo.png"> </h1>
<div class="caixa">
<nav>
<ul>
<li> <a href="index.html"> Home </a></li>
<li> <a href="produtos.html">Produtos</a> </li>
<li> <a href="contatos.html">Contatos</a> </li>
</ul>
</nav>
</div>
</header>
</body>
</html>
Segue CSS
header {
background: #BBBBBB;
padding: 20px 0;
}
nav {
position: absolute;
top: 110px;
right: 0;
}
.caixa{
position: relative;
width: 940px;
margin: 0 auto;
}
nav li {