HTML
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8"> 
    <title >Productos - Babería Alura</title>
    <link rel=" stylesheet" href="productos.css">
</head>
<body>
    <header>
        <h1> <img src="imagenes/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>
    </header>
</body>
</html>CSS
header{
    background-color: #cccccc
}
nav li{
 display: inline;
 margin: 0 0 0 15px;
}
nav a{
text-transform: uppercase;
color: black;
font-weight: bold;
font-size: 22px;
text-decoration: none;
} 
            