Salut !
Nouveau problème !
Sur plusieurs pages de mon site, je n'arrive pas à valider le XHTML, et j'ai l'erreur suivante dans le validator :
Below are the results of checking this document for XML well-formedness and validity.
1. Error Line 7 column 8: end tag for "head" which is not finished.
</head>
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.
- Code: Tout sélectionner
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/HTML; charset=iso-8859-1" />
<link href="css/bandeau.css" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="evenement">
(PHP)
</div> <!-- div evenement -->
<div id="banniere">
<img src="img/banniere.gif" alt="Bannière de Mauges Online" />
</div> <!-- div banniere -->
</body>
</html>
et je ne vois pas quoi faire...