CSS
header{
background-color: #bbbbbb;
padding: 20px 0;
}
.caja{
width: 940px;
position: relative;
margin: 0 auto;
}
nav{
position: absolute;
top: 0px;
right: 0px;
top: 110px;
}
nav li{
display: inline;
margin : 0 15px;
}
nav a{
text-transform: uppercase;
font-family: Arial, Helvetica, sans-serif;
color: black;
font-size: 22px;
font-weight: bold;
text-decoration: none;
}
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</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="productos.css">
</head>
<body>
<header>
<div class="caja">
<h1><img src="imagenes/logo.png" alt=""></h1>
<nav>
<ul class="menu">
<li><a href="index.html">Inicio</a></li>
<li><a href="productos.html">Productos</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
</nav>
</div>
</header>
</body>
</html>