dexfs
8/4/2012 - 6:44 AM

Estudo Html5

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>