Problème avec W3 Validator
Posté : 01 nov. 2005, 19:13
Bonjour,
J'essaye de me mettre aux normes du HTML 4.01 Transitional avec l'aide du W3 Validator mais il m'affiche des erreurs que je ne comprends pas.
J'essaye de me mettre aux normes du HTML 4.01 Transitional avec l'aide du W3 Validator mais il m'affiche des erreurs que je ne comprends pas.
Voici mon code, j'espère que vous pourrez m'aider.1. Error Line 14 column 6: end tag for element "HEAD" which is not open.
</head>
The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.
If this error occured in a script section of your document, you should probably read this FAQ entry.
2. Error Line 16 column 5: document type does not allow element "BODY" here.
<body>
Code : Tout sélectionner
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>THE X FACTOR.ARENA</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="javascript.js" type="text/javascript"></script>
</head>
<body>
<table align="center" width="750" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" rowspan="2"><img src="images/design_01.gif" width="150" height="175" alt="" /></td>
<td valign="top" rowspan="2"><img src="images/design_02.gif" width="25" height="175" alt="" /></td>
<td valign="top"><img src="images/design_03.gif" width="575" height="150" alt="" /></td>
</tr>
<tr>
<td valign="middle" height="25"><a class="menu" href="index.html"><span class="color3"><b>.</b></span> Index</a> <span class="color3"><b>.</b></span><td>
</tr>
<tr>
<td colspan="3"><img src="images/spacer.gif" width="1" height="10" alt="" /></td>
</tr>
<tr valign="top">
<td>
<!--MENU START-->
<img src="images/titre_site.gif" width="150" height="12" alt="" />
<br />
<span class="color3"><b>.</b></span> <a class="menu" href="index.html">Index</a>
<!--MENU END-->
</td>
<td><img src="images/spacer.gif" width="1" height="1" alt="" /></td>
<td>
<!--BODY START-->
<div style="text-align:justify">
<b><span class="color3">A</span> B O U T</b>
<hr />
</div>
<!--BODY END-->
</td>
</tr>
<tr>
<td colspan="3"><img src="images/spacer.gif" width="1" height="10" alt="" /></td>
</tr>
<tr>
<td align="center" height="25">Copyright 2005 - Faust</td>
<td valign="bottom" rowspan="2"><img src="images/design_05.gif" width="25" height="75" alt="" /></td>
<td valign="bottom" rowspan="2"><img src="images/design_06.gif" width="575" height="75" alt="" /></td>
</tr>
<tr>
<td valign="bottom"><img src="images/design_04.gif" width="150" height="50" alt="" /></td>
</tr>
</table>
</body>
</html>