<!--Resolução do exercício - conforme proposto em aula-->
<!--contato.html-->
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title> Contato - Barbearia Alura </title>
<link rel="stylesheet" href = "reset.css" type="text/css">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<header>
<div class="caixa">
<h1><img src="logo.png"></h1>
<nav>
<ul>
<li><a href = "index.html">Home</a></li>
<li><a href = "produtos.html">Produtos</a></li>
<li><a href = "contato.html">Contato</a></li>
</ul>
</nav>
</div>
</header>
<main>
</main>
<footer>
<img src="logo-branco.png">
<p class="copyright">© Copyright Barbearia Alura - 2022</p>
</footer>
</body>
</html>