Voici ci après les 5 premières erreurs de mon code... ça commence dès
l'annonce de charset iso...
j'i pourtant fait des copiers coller de codes existants et soi disant
corrects donc je vois pas d'ou vient le soucis...
Si vous pouviez m'expliquer, merci d'avance
a.. Line 4, column 192: document type does not allow element "meta" here
...ntent="text/html; charset=iso-8859-1">
The element named above was found in a context where it is not allowed. This
could mean that you have incorrectly nested elements -- such as a "style"
element in the "body" section instead of inside "head" -- or two elements
that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML
documents. Due to HTML's rules of implicitly closed elements, this error can
create cascading effects. For instance, using XHTML's "self-closing" tags
for "meta" and "link" in the "head" section of a HTML document may cause the
parser to infer the end of the "head" section and the beginning of the
"body" section (where "link" and "meta" are not allowed; hence the reported
error).
?
a.. Line 4, column 193: end tag for "meta" omitted, but OMITTAG NO was
specified
...tent="text/html; charset=iso-8859-1">
You may have neglected to close a tag, or perhaps you meant to "self-close"
a tag; that is, ending it with "/>" instead of ">".
?
a.. Line 4, column 121: start tag was here
.../xhtml1/DTD/xhtml1-transitional.dtd"><meta http-equiv="Content-Type"
content=
a.. Line 18, column 10: there is no attribute "rel"
<LINK rel="stylesheet" type="text/css" href="biospip/biocss/Ns_Sommaire.css"
/>
You have used the attribute named above in your document, but the document
type you are using does not support that attribute for this element. This
error is often caused by incorrect use of the "Strict" document type with a
document that uses frames (e.g. you must use the "Transitional" document
type to get the "target" attribute), or by using vendor proprietary
extensions such as "marginheight" (this is usually fixed by using CSS to
achieve the desired effect instead).
This error may also result if the element itself is not supported in the
document type you are using, as an undefined element will have no supported
attributes; in this case, see the element-undefined error message for
further information.
How to fix: check the spelling and case of the element and attribute,
(Remember XHTML is all lower-case) and/or check that they are both allowed
in the chosen document type, and/or use CSS instead of this attribute.
?
a.. Line 18, column 28: there is no attribute "type"
<LINK rel="stylesheet" type="text/css" href="biospip/biocss/Ns_Sommaire.css"
/>