<DOCTYPE html>
<html>
<head>
<meta charset="UFT-8">
<title>Barbearia</title>
<link rel ="stylesheet" href="reset.css">
<link rel ="stylesheet" href="produtos_style.css">
</head>
<body>
<header>
<div class="cabecalho">
<img src="logoo.png" class="logo">
</div>
<div class="menu">
<nav>
<ul>
<li><a href="index_02_link_css.html">Home</a></li>
<li><a href="produtos.html">Produtos</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</div>
</header>
</body>
</html>
.logo{
width: 10%;
margin-left: 600px;
}
.cabecalho{
background: #000000;
width: 100%;
height: 190px;
}
.menu{
background: #FFB233;
width: 100%;
height: 40px;
margin-top: -20px;
}
nav li{
display: inline;
padding: 80px;
}
nav a {
text-transform: uppercase;
color: #000000;
font-weight: bold;
font-size: 20px;
text-decoration: none;
}