Bonjour,

Voilà, j'ai un TP de XHTML a rendre (je fais un DUT programmation) mais je bute sur une petite erreur dans le code, en effet notre prof nous a demander de valider notre page sur Validome.com

Voici un screen de l'erreur :

http://img4.imageshack.us/img4/7392/captureoi6.png

Et voici le code de ma page (c'est un petit formulaire) :

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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="iso-8859-1"?>
<!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"/>
		<meta http-equiv="Content-Style-Type" content="text/css" />
 
		<link rel="shortcut icon" type="image/x-icon" href="iconeweb.ico"/>
		<title>TP2 programmation web</title> 
	</head>
	<body>
		<form action="page3.html" method="get">
			<p>
				<label>Votre no<span style="text-decoration:underline;">m</span> ?</label><br/>
				<input type="text" name="nom" accesskey="m" tabindex="1"/><br/>
				<label>Votre <span style="text-decoration:underline;">p</span>r&eacute;nom ?</label><br/>
				<input type="text" name="prenom" accesskey="p" tabindex="2"/><br/>				
				<label>Votre <span style="text-decoration:underline;">e</span>mail ?</label><br/>
				<input type="text" name="email"accesskey="e" tabindex="3"/><br/>
				<label>Dans quel groupe etes vous?</label><br/>
				<select name="groupe" tabindex="60">
				<optgroup label="1iere Annee DUT Informatique">
					<option>A1</option>
					<option>A2</option>
					<option>B1</option>
					<option>B2</option>
				</optgroup>
				<optgroup label="2eme Annee DUT Informatique">
					<option>A1</option>
					<option>A2</option>
					<option>B1</option>
					<option>B2</option>
				</optgroup>
				<optgroup label="Licence pro SIL">
					<option>G1</option>
					<option>G2</option>
				</optgroup>
				</select><br/>
				<label>Votre <span style="text-decoration:underline;">n</span>umero ?</label><br/>
				<input type="text" name="numero" disabled="disabled" accesskey="n" tabindex="5"/><br/>
				<label>Votre choix d'<span style="text-decoration:underline;">o</span>ption :</label><br/>
				<input type="checkbox" name="allemand" tabindex="6" accesskey="o"/><label>allemand</label><br/>
				<input type="checkbox" name="sport" tabindex="7" accesskey="o"/><label>sport</label><br/>
				<label>Veuillez indiquer votre type de <span style="text-decoration:underline;">b</span>ac :</label><br/>
				<input type="radio" name="bac" value="S" tabindex="18" accesskey="b"/><label>bac S</label><br/>
				<input type="radio" name="bac" value="STI" tabindex="18" accesskey="b"/><label>bac STI</label><br/>
				<input type="radio" name="bac" value="STT" tabindex="18" accesskey="b" checked="checked"/><label>bac STT</label><br/>
				<input type="radio" name="bac" value="autre" tabindex="18" accesskey="b"/><label>autre</label><br/>
				<button type="submit">Envoyer<img src="image.jpg" alt="image du bouton"/></button>
			</p>
		</form>
	</body>
</html>
L'erreur se situe sur le caractère "u" d'une chaine de caractère...je ne comprend pas

MERCI DE VOTRE AIDE !!!!