Created
November 1, 2012 19:15
-
-
Save tiagodavi/3995801 to your computer and use it in GitHub Desktop.
Estrutura HTML5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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