html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Productos - Barbería Alura</title>
<link rel="stylesheet" href="productos.css">
</head>
<body>
<header>
<h1 class="cabecera"><img src="imagenes/logo.png"></h1>
<nav class="navegacion">
<ul>
<li class="listas"><a href="index.html" class="direccion">Home</a></li>
<li class="listas"><a href="productos.html" class="direccion">Productos</a></li>
<li class="listas"><a href="contacto.html" class="direccion">Contacto</a></li>
</ul>
</nav>
</header>
</body>
</html>
css
.cabecera
{
background-color: #BBBBBB;
}
.navegacion .listas
{
display: inline;
margin: 0 0 0 5%;
}
.navegacion .direccion
{
text-transform: uppercase;/* texto en mayusculas */
color: #000;
font-weight: bold;
font-size: 100%;
text-decoration: none;
}