Bonjour,
il ne me reste plus que 4 fois la même erreur pour pouvoir valider w3c ...
Mon erreur est la suivante :
Mon code :document type does not allow element "html" here .
… xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
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).
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32 <html lang="fr" xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"> <head> <title> L'Arche du Val de Sambre</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" /> </head> <body> <div id="header"> <h1> L'ARCHE DU VAL DE SAMBRE</h1> <h2> Association de protection animale - loi 1901</h2> </div> <div id="navigation" style="margin-bottom:5px;"> <ul> <li><a href="index.php" title="Accueil">Accueil</a></li> <li><a href="presentation.php" title="Présentation">Présentation</a></li> <li><a href="conditionsAdoption.php" title="Conditions d'adoption">Conditions d'adoption</a></li> <li><a href="animauxAdoptes.php" title="Les animaux adoptés">Les adoptés</a></li> <li><a href="conseil.php" title="Conseils">Conseils</a></li> <li><a href="legislation.php" title="La législation">Législation</a></li> <li><a href="autresRefuges.php" title="Coordonnées d'autres refuges">Autres refuges </a></li> <li><a href="livreDor.php" title="Le livre d'or">Livre d'or</a></li> <li><a href="forum.php" title="Le forum">Forum </a></li> </ul> </div> <div id="main-image" style="margin-bottom:5px;"></div> </body> </html>
Si quelqu'un aurait une idée ??
Merci d'avance!
Partager