<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="Productos.css" />
<title>Producto</title>
</head>
<body>
<header>
<h1><img src="Imagenes/logo.png" alt="logo" /></h1>
<nav>
<ul>
<li><a href="/html5yCSS3/principal/index.html" target="_blank">Home</a></li>
<li><a href="Producto.html">Productos</a></li>
<li><a href="http://www.google.com">Pagina de Contacto</a></li>
</ul>
</nav>
</header>
</body>
</html>
header {
background-color: #bbbb;
}
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;
}