Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/02/2012, 18:56
danneg
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Juguemos a Diagramar 1



HTML5 propone ser más semántico, asi que hago uso de las etiquetas article, figure y hgroup (además de las ya anteriormente mencionadas).

Código HTML:
Ver original
  1.     <hgroup>
  2.         <h1>Le Logo</h1>
  3.     </hgroup>
  4.     <nav>Menú</nav>
  5.  
  6.     <hgroup>
  7.         <h1>Las flores más lindas</h1>
  8.     </hgroup>
  9.     <p>Texto y texto</p>
  10.  
  11. <figure>Foto</figure>
  12.  
  13.     <article>Anuncio 1</article>
  14.     <article>Anuncio 2</article>
  15.     <article>Anuncio 3</article>
  16.  
  17.     <p>Tel</p>
  18.     <p>Social</p>

Última edición por danneg; 17/02/2012 a las 19:03