Skip to content

Instantly share code, notes, and snippets.

@dexfs
Created August 4, 2012 06:44
Show Gist options
  • Save dexfs/3255190 to your computer and use it in GitHub Desktop.
Save dexfs/3255190 to your computer and use it in GitHub Desktop.
Estudo Html5
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title></title>
<meta charset="utf-8">
<body>
<section>
<header class="cabecalho">
<div class="cabecalho-limite">
<h1>Logo</h1>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Contato</a></li>
</ul>
</div>
</header>
<article class="content">
<header>
<h1>Titulo do artigo, data, etc.</h1>
<h2>Subtitulo</h2>
<p>excerpt</p>
</header>
<p>
Conteudo
</p>
<footer>
Redes sociais | Autor | Comentários
</footer>
</article>
<footer> Busca | Link de navegação</footer>
</section>
</body>
</head>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment