Ao carregar a pagina ás imagens não carregam e os tópicos não ficam desconfigurados.
Podem me auxiliar?
Html
<!DOCTYPE html>
<html>
<head>
<body>
<meta charset="UTF-8">
<title>Produtos -Barbearia Alura </title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="produtos.css">
</body>
<header>
<h1> <img src = "logo.png"> </img></h1>
<nav>
<ul>
<li><a href="Index 2.html"> Home </a></li>
<li><a href="Produtos.html">Produtos</a></li>
<li><a href="contato.html">Contatos</a> </li>
</ul>
</nav>
</header>
</head>
</html>
CSS
header {
background: #BBBBBB;
padding: 20px 0;
}
.caixa {
position: relative;
width: 940px;
margin: 0 auto;
}
nav {
position: absolute;
top: 110px;
right: 0;
}
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;
}
Podem me auxiliar?