<!DOCTYPE html lang = "PT-BR">
<html>
<head>
<meta charset = "UTF-8">
<title>Projeto novo</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<h1><img src="img\banner.jpeg"></h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="sobre.html">Sobre</a></li>
<li><a href="contato.html">Contatos</a></li>
</ul>
</nav>
</header>
</body>
</html>
body{
}
header{
background: orange;
}
nav{
position: absolute;
}
nav li{
display: inline;
font-size: 30px;
margin-left: 30px;
}
nav a{
text-transform: uppercase;
color: black;
font-weight: bold;
text-decoration: none;
}
img{
height: 12%;
width: 12%;
}
`