Skip to content

Instantly share code, notes, and snippets.

@tiagodavi
Created November 1, 2012 19:15
Show Gist options
  • Save tiagodavi/3995801 to your computer and use it in GitHub Desktop.
Save tiagodavi/3995801 to your computer and use it in GitHub Desktop.
Estrutura HTML5
<!DOCTYPE HTML>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="estilo.css">
<title></title>
</head>
<body>
<header>
<!-- Topo aqui -->
</header>
<!-- Menu aqui -->
<nav>
<ul>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</nav>
<div id="mensagens">
<!-- Mensagens de erro/aviso aqui -->
</div>
<div id="conteudo">
<!-- Conteúdo aqui -->
</div>
<footer>
<!-- Rodapé aqui -->
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment