Ver Mensaje Individual
  #6 (permalink)  
Antiguo 22/01/2012, 15:52
Avatar de Rafael
Rafael
Modegráfico
 
Fecha de Ingreso: marzo-2003
Mensajes: 9.028
Antigüedad: 21 años, 1 mes
Puntos: 1826
Respuesta: Forma correcta de colocar header ?

Soy un poco ignorante del tema, pero si se puede poner un header por sección, no debería ser

Código HTML:
Ver original
  1.     <h1>The most important heading on this page</h1>
  2.     <p>With some supplementary information</p>
  3.  
  4.     <h1>Title of this article</h1>
  5.     <p>By Richard Clark</p>
  6.     <p>...Lorem Ipsum dolor set amet...</p>

Ahora, supongo que el anidar section y articles debería corresponder a la misma jerarquía de h1, h2, h3, por ejemplo:

Código HTML:
Ver original
  1. <h1></h1>
  2.   <article>
  3.   <h2></h2>
  4.   </article>
  5.  
  6.   <article>
  7.    <h2></h2>
  8.    </article>