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><img src="imagenes/logo.png"></h1>
<nav>
<ul>
<li><a href="Index.html"></a>Home</li>
<li> <a href="productos.html"></a>Productos</li>
<li><a ref="contacto.html"></a>Contacto</li>
</nav>
</ul>
</header>
</body>
</html>
CSS
header{
background-color: #BBBBBB;
}
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;
}
El tema de las mayúsculas y ponerlo en negrilla tampoco me aparece, qué estaré haciendo mal?