Balise meta et erreur W3C
bonjours,
Code:
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 33 34 35 36 37 38 39 40
| <!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="../../design/Basic/style.css" />
<title>Document sans nom</title>
</head>
<body>
<?php
include "includes/menu_haut.php";
?>
<section>
<h6>slideshow</h6>
<article> <h6>slideshow</h6></article>
</section>
<?php
include "includes/menu_bas.php";
?>
</body>
</html> |
il me dit
Citation:
alidation Output: 1 Error
Warning Line 3, Column 74: Using windows-1252 instead of the declared encoding iso-8859-1.
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
✉
Warning Legacy encoding windows-1252 used. Documents should use UTF-8. ✉
Error Line 3, Column 74: Bad value text/html; charset=iso-8859-1 for attribute content on element meta: iso-8859-1 is not a preferred encoding name. The preferred label for this encoding is windows-1252.
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
Syntax of legacy character encoding declaration:
The string text/html;, optionally followed by whitespace, followed by charset=, followed by a preferred encoding name according to the Encoding Standard. Example: text/html; charset=utf-8
merci