Advertisement
Guest User

Programación3

a guest
Feb 24th, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="es">
  3. <head>
  4. <meta charset="utf-8">
  5.  
  6. <meta name="description" content="Ejemplo de HTML">
  7. <meta name="keywords" content="HTML5, CSS3, JavaScript">
  8. <title>Este texto es el titulo del documento</title>
  9. <link rel="stylesheet" href="ej.css">
  10. </head>
  11. <body>
  12. <div id="caja_principal">
  13. <header id="cabecera">
  14. <h1>Titulo principal del sitio</h1>
  15. </header>
  16. <nav id="menu">
  17. <ul>
  18. <li>Inicio</li>
  19. <li>Imagenes</li>
  20. <li>Videos</li>
  21. <li>Contacto</li>
  22. </ul>
  23. </nav>
  24. <section id="area_principal">
  25. <article>
  26. <header>
  27. <hgroup>
  28. <h1>Titulo de la primera entrada</h1>
  29. <h2>Subtitulo de la primera entrada</h2>
  30. </hgroup>
  31. <time datetime="2013-01-02" pubdate>Publicado el 12-01-2013<time>
  32. </header>
  33.  
  34. <figure>
  35. <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTbfxrIcLsdeVmZLr7i-RstBThvTjg8byj4m9BHgn7Y0x4aiLQ0">
  36. <figcaption>
  37.  
  38. </figcaption>
  39. </figure>
  40. <footer>
  41. <p>Comentarios (0)</p>
  42. </footer>
  43. </article>
  44. <article>
  45. <header>
  46. <hgroup>
  47. <h1>Titulo de la Segunda entrada</h1>
  48. <h2>Subtitulo de la Segunda entrada</h2>
  49. </hgroup>
  50. <time datetime="2013-01-15" pubdate>Publicado el 15-01-2013<time>
  51. </header>
  52.  
  53. <footer>
  54. <p>Comentarios (0)</p>
  55. </footer>
  56. </article>
  57. </section>
  58. <aside id="barra_lateral">
  59. <blockquote>Cita del Articulo 1</blockquote>
  60. <blockquote>Cita del Articulo 1</blockquote>
  61. </aside>
  62. <footer id="pie">
  63. Copyright &copy 2013
  64. </footer>
  65. </div>
  66. </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement