Bonjour,
je ne comprends pas la signification de ce message d'erreur généré "Sorry, I am unable to validate this document because on line 9 it contained one or more bytes that I cannot interpret as utf-8 (in other words, the bytes found are not valid values in the specified Character Encoding). Please check both the content of the file and the character encoding indication.
The error was: utf8 "\xEB" does not map to Unicode" par le validateur W3C quand je charge le fichier .htm ( le document est valide si je charge le code)
MERCI à tous
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 <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <meta name="description" content="Ma page web" /> <meta name="keywords" content="HTML5,CSS3,JavaScript,PHP" /> <meta name="author" content="Gaël MAHE" /> <!--j'ai oublié de modifier le nom de l'auteur --> <title> Premier essai </title> </head> <body> <p> Bonjour tout le monde... <!-- je ne sais pas trop quoi écrire alors je fais plein de commentaires qui ne vont pas s'afficher --> </p> <hr /> </body> </html>
Partager