Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/07/2010, 12:42
XxflezhaxX
 
Fecha de Ingreso: noviembre-2009
Ubicación: Barcelona
Mensajes: 214
Antigüedad: 14 años, 4 meses
Puntos: 6
Unos errores de validacion que pa mi no son errores xD

Este es mi code HTML
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2.        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <link rel="stylesheet" a href="stile.css" type="text/css" />
  5. </head>
  6.  
  7. <div class="top"></div>
  8.  
  9. <div class="middle">
  10.   <div id="text">En este tema, tocaremos todo lo relacionado con la XHTML, HTML y CSS<br/>
  11.   aqui os dejo una lista con multiples temas:
  12.   <ul compact>
  13.   <li>Introduccion</li>
  14.   <li>Texto</li>
  15.   <li>Links</li>
  16.   <li>Anclas</li>
  17.   <li>Imagenes</li>
  18.   <li>Tablas</li>
  19.   <li>Listas</li>
  20.   <li>Formularios</li>
  21.   <li>Mapas</li>
  22.   <li>Validacion del Codigo</li>
  23.   </ul>
  24.   </div>
  25. </div>  
  26.  
  27. <div class="bottom"></div>
  28.  
  29. </body>
  30. </html>

primer error
"a" is not a member of a group specified for any attribute
<link rel="stylesheet" a href="stile.css" type="text/css" />

segundo error
end tag for "head" which is not finished
</head>

tercer error
"compact" is not a member of a group specified for any attribute
<ul compact>

Y tengo 2 Warning:
1.

Warning No Character Encoding Found! Falling back to UTF-8.

None of the standards sources gave any information on the character encoding labeling for this document. Without encoding information it is impossible to reliably validate the document. As a fallback solution, the "UTF-8" encoding was used to read the content and attempt to perform the validation, but this is likely to fail for all non-trivial documents.

Read the FAQ entry on character encoding for more details and pointers on how to fix this problem with your document.

2.

Info No Character encoding declared at document level

No character encoding information was found within the document, either in an HTML meta element or an XML declaration. It is often recommended to declare the character encoding in the document itself, especially if there is a chance that the document will be read from or saved to disk, CD, etc.

See this tutorial on character encoding for techniques and explanations.

espero su ayuda!!