Código HTML:
Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <link rel="stylesheet" a href="stile.css" type="text/css" /> </head> <body> <div class="middle"> aqui os dejo una lista con multiples temas: <ul compact> </ul> </div> </div> </body> </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!!