HTML
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>productos-Barbería Alura</title>
<link rel="stylesheet" href="CSS/reset.css">
<link rel="stylesheet" href="CSS/productos.css">
<link rel="shortcut icon" href="images/logo.png">
</head>
<body>
<header>
<div class ="caja">
<h1><img src="images/logo.png"></h1>
<nav>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="productos.html">productos</a></li>
<li><a href="contacto.html">contacto</a></li>
</ul>
</nav>
</div>
</header>
</body>
</html>
CSS
header{
background-color: #BBBBBB;
padding: 20px 0;
}
.caja {
width: 940px;
position: relative;
margin: 0 auto;
}
nav {
position: absolute;
top: 110px;;
right: 0;
}
nav li {
display: inline;
margin: 0 0 0 15px;
}
nav a{
text-transform: uppercase;
color:#000000;
font-weight: bold;
font-size: 22px;
text-decoration: none;
}