Advertisement
Guest User

Untitled

a guest
May 27th, 2015
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pt-BR">
  3. <head>
  4. <title>Programação HTML e CSS: Um blog diferente</title>
  5. <meta charset="utf-8">
  6. <link rel="stylesheet" type="text/css" href="css/estilo.css">
  7. </head>
  8. <body>
  9. <header id="cabecalho">
  10. <a href="index.html" title="Ir para página inicial">
  11. <h1>Programação HTML e CSS</h1>
  12. <h2>Um blog diferente</h2>
  13. </a>
  14. </header>
  15. <nav id="menu">
  16. <ul>
  17. <li class="link_inicio"><a href="index.html"
  18. title="Ir para página inicial">Página Inicial</a></li>
  19. <li class="link_sobre"><a href="sobre.html"
  20. title="Ver mais informações sobre o autor">Sobre o autor</a></li>
  21. <li class="link_contato"><a href="contato.html"
  22. title="Entre em contato">Contato</a></li>
  23. </ul>
  24. </nav>
  25. <section id="conteudo">
  26. <!-- REGIAO EDITAVEL -->
  27. </section>
  28. <footer id="rodape">
  29. <aside>
  30. <ul>
  31. <li><a href="index.html" title="Ir para página inicial">Página Inicial</a></li>
  32. <li><a href="sobre.html" title="Ver mais informações sobre o autor">Sobre o autor</a></li>
  33. <li><a href="contato.html" title="Entre em contato">Contato</a></li>
  34. </ul>
  35. </aside>
  36. <div id="direitos">
  37. <small>Copyright &copy; 2015. Todos os direitos reservados.</small>
  38. </div>
  39. </footer>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement