Fiz algumas alterações que não foram pedidas no exercício.
html
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Produtos - Barbearia Alura</title>
<link rel="stylesheet" href="exercicio.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: blue;
}
nav li {
display: inline;
margin-right: 20px;
}
nav a {
text-transform: uppercase;
color: white;
font-weight: italic;
font-size: 25px;
text-decoration: none;
}