Ejemplo 3 Ejemplo de estructura de web Código HTML <html lang="es"> <head> <meta charset="utf-8"> <title>Título</title> <link rel="stylesheet" href="mi_estilo4.css"> </head> <body> <div id="grupo"> <header id="cabecera"> <h1> Este es el título principal</h1> </header> <nav id="menu"> <ul> <li> elemento 1 </li> <li> elemento 2 </li> <li> elemento 3 </li> <li> elemento 4 </li> </ul> </nav> <section id="seccion"> <article> <header> <hgroup> <h1> Título 1</h1> <h2> Subtítulo del título 1</h2> </hgroup> </header> Esta es la imagen del primer mensaje <figure> <img src="images/paisaje.JPG" alt="foto paisaje" width="100%" height="auto"/> <figcaption>Leyenda de la imagen 1</figcaption> </figure> <footer> <p>Comentarios (0)</p> </footer> </article> <article> <header> <hgroup> <h1> Título 2</h1> <h2> Subtítulo del título 2</h2> </hgroup> </header> Esta es la imagen del segundo mensaje <figure> <img src="images/puente.jpeg" alt="foto puente" width="100%" height="auto"/> <figcaption>Leyenda de la imagen 2</figcaption> </figure> <footer> <p>Comentarios (0)</p> </footer> </article> </section> <aside id="columna"> <blockquote>mensaje número uno</blockquote> <blockquote>mensaje número dos</blockquote> </aside> <footer id="pie"> © xxxxxxxxxxx </footer> </div> </body> </html>