Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/02/2015, 10:27
Avatar de Benderzuelo
Benderzuelo
 
Fecha de Ingreso: mayo-2013
Ubicación: España
Mensajes: 223
Antigüedad: 11 años, 5 meses
Puntos: 5
Errores W3C Validator

Buenas a todos,

he pasado el W3C Validator a una web que estoy haciendo y me dice lo siguiente:

Line 153, Column 53: Section lacks heading. Consider using h2-h6 elements to add identifying headings to all sections.

Código HTML:
Ver original
  1. <section class="fila blanco bordeBajoSeparacion">

Line 237, Column 38: Article lacks heading. Consider using h2-h6 elements to add identifying headings to all articles.

Código HTML:
Ver original
  1. <article class="cajaBlog">

Y por último esto :

Line 8, Column 62: A meta element with an http-equiv attribute whose value is X-UA-Compatible must have a content attribute with the value IE=edge.

Código HTML:
Ver original
  1. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

Los sections en mi código están así:

Código HTML:
Ver original
  1. <section class="fila blanco bordeBajoSeparacion">
  2.         <div class="contenedorMil">
  3.             <p class="parrafos">Texto....</p>
  4.         </div>
  5.     </section>

y los Articles están así:

Código HTML:
Ver original
  1.        <article class="columnas3">
  2.     <header>
  3.         <h2 class="subtitulosSeo">Título</h2>
  4.     </header>
  5.     <p class="justificado">Texto...</p>


No se si esto quiere decir que debo poner un título dentro de los sections y otro dentro de los articles... de todos modos lo he probado y sigue lanzando error en los sections y articles y el warning del metatag.

No se si estoy poniendo mal el orden de las etiquetas o que porque es la primera web que hago de esta forma.

Muchas gracias de antemano.

Saludos