Page non conforme W3C

Nouveau WRInaute
Bonsoir,

J'ai voulu analysé une de mes pages sur W3C mais j'obtiens une erreur :evil: .

Error Line 7 column 6: end tag for "html" which is not finished.

</html>

Most likely, You nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, <head> generally requires a <title>, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.

Je ne vois pas ce qui ne joue pas :cry:

Voici le code de ma page :

<!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" xml:lang="fr" lang="fr">
<head>
<title>titre</title>
<meta http-equiv="Content-Type" content="text/html, charset=iso-8859-15" />
</head>
</html>

Si quelqu'un peut m'aider :oops:

Merci d'avance

A+
 
Discussions similaires
Haut