1. <!doctype html>
  2. <html lang="es">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Titulo</title>
  6. </head>
  7. <body>
  8. <div id="centrado">
  9. <header>
  10. <hgroup>
  11. <h1>TITULO</h1>
  12. <h2>DESCRIPCION DE LA WEB</h2>
  13. </hgroup>
  14. <div id="logotipo">LOGOTIPO</div>
  15. </header>
  16. <div id="contenido">
  17. <nav>MENU DE NAVEGACION</nav>
  18. <aside>ANUNCIO DEL PDF</aside>
  19. <section id="izquierda">
  20. <h2>Ultimas Novedades<h2>
  21. <article>NOVEDAD</article>
  22. </section>
  23. <section id="centro">
  24. <h2>Temas Populares<h2>
  25. <article>POPULAR</article>
  26. </section>
  27. </div>
  28. <footer>
  29. <section id="copyright">Copyright</section>
  30. <section id="contacto">Contacto</section>
  31. <section id="enlaces">MapaWeb</section>
  32. </footer>
  33. </div>
  34. </body>
  35. </html>