Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/09/2005, 03:18
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 22 años, 8 meses
Puntos: 381
Qué tal,

pues los errores están bastante claros:

Cita:
Line 20 column 21: there is no attribute "border".
Le asignas el atributo border=0 a una imagen pero no existe ese atributo para el tag img

Cita:
Line 20 column 81: required attribute "alt" not specified.
El atributo alt (texto alternativo) es obligado en las imágenes. Te dice que lo has omitido.

Cita:
Line 20 column 86: end tag for "img" omitted, but OMITTAG NO was specified.
No existen tags sin cierre. Para cerrar los que antes no se cerraban has de añadir una / antes del > final

<img .... />

El error indica que lo has omitido

Cita:
Line 76 column 10: end tag for "p" omitted, but OMITTAG NO was specified.
falta que cierres un párrafo que abriste.

Cita:
Line 76 column 14: end tag for element "p" which is not open.
Sobra el cierre de un párrafo que no abriste

Cita:
end tag for "p" omitted, but OMITTAG NO was specified.
Otro párrafo sin cerrar

Cita:
Line 85 column 50: end tag for "p" omitted, but OMITTAG NO was specified.
otro párrafo sin cerrar

Cita:
Line 89 column 24: end tag for "p" omitted, but OMITTAG NO was specified.
Lo mismo

son muy simples de corregir

un saludo