1) Unknown Parse Mode! The MIME Media Type () for this document is used to serve both SGML and XML based documents, and it is not possible to disambiguate it based on the DOCTYPE Declaration in your document. Parsing will continue in SGML mode
che significa? cosa devo fare?
la mia doctype declaration è la seguente:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//IT"
"http://www.w3.org/TR/html4/loose.dtd">
2) Error Line x column x: an attribute specification must start with a name or name token.
<link="blue" vlink="purple">
An attribute name (and some attribute values) must start with one of a restricted set of characters. This error usually indicates that you have failed to add a closing quotation mark on a previous attribute value (so the attribute value looks like the start of a new attribute) or have used an attribute that is not defined (usually a typo in a common attribute name).
3) Error Line x column x: required attribute "TYPE" not specified.
<style>
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
Error Line x column x: document type does not allow element "STYLE" here.
<style>
si riferisce a questa linea di codice che ho messo alla fine del body:
<style>
body { background: white url(nomefoto.jpg);}
</style>
che c'è di sbagliato??
grazie