html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> Produtos - Barbearia Alura</title>
<link rel="stylesheet" href="produtos.css">
</head>
<body>
<header>
<h1> <img src="logo.png"> </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>
</header>
</body>
</html>
css
header{
background: #BBBBBB;
}
nav li{
display: inline;
margin: 0 0 0 15px;
}
nav a{
text-transform: uppercase;
color: #000000;
font-weight: bold;
font-size: 20px;
text-decoration: none;
}