I'm confused

wxdqz

New Member
Would someone please look at my code and tell me what I am doing wrong?

I am trying to validate a page that I'm using the French language in. I've input the character encoding, used "lang"="fr" where I'm supposed to but when I attempt to validate it, I get that same ol' annoying error message:

"Sorry, I am unable to validate this document because on lines 17, 25, 29, 31, 33 it contained one or more bytes that I cannot interpret as us-ascii (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.

And here's my code:

<?xml version ="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xml:lang="en" lang="en">
<!-- poem.html by Chicken Little-->
<head>
<title>Le Revenant by Charles Baudelaire</title>
<link rel="stylesheet"
type="text/css"
href="poem.css" />
</head>
<body lang='fr'>
<p><img src='http://www.webdeveloper.com/forum/archive/index.php/bluegreeredline.gif' alt=blue green and red line />
<h1>Le Revenant</h1>
<p class='small'>by Charles Baudelaire</p>
<p>Comme des anges a l抩eil fauve,<br>
je reviendrai dans ton alcove<br>
et vers toi glisserai sans bruit<br>
avec les ombres de la nuit,<br>
</p>
<p>Et je te donnerai, ma brune<br>
des baisers froids comme la lune<br>
et des caresses de serpent<br>
autour d抲ne fosse rampant.<br>
</p>
<p>Quand viendra le matin livide,<br>
tu trouveras ma place vide,<br>
ou jusqu抋u soir il fera froid.<br>
</p>
<p>Comme d抋utres par la tendresse,<br>
sur ta vie et sur ta jeunesse,<br>
moi, je veux regner par l抏ffroi.<br>
</p>
<p><img src='http://www.webdeveloper.com/forum/archive/index.php/bluegreeredline.gif' alt=blue green and red line />
<p class='mouse'><a href='http://www.webdeveloper.com/forum/archive/index.php/mouse.html'>Mouse Cages</a>
<p class='menu'><a href='http://www.webdeveloper.com/forum/archive/index.php/menu.html'>Le Menu</a>
</body>
</html>

I would appreciate it if someone could help me...it's driving me nuts.

nicomen
 
Back
Top