Salut,
Je commence un peu a me mettre aux normes xhtml, j'ai pas mal lu les docs et exemples et pourtant je me heurte a un problème de validation par le validator du w3c.

Error Line 2 column 15: there is no attribute "XML:LANG".
<HTML xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml">
Error Line 2 column 26: there is no attribute "XMLNS".
<HTML xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml">
Mon header de page c'est ca :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<HTML xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<HEAD>
	<TITLE>titre temporaire</TITLE>
	<META http-equiv="content-type" content="text/html; charset=iso-8859-1">
 
	<STYLE title="currentStyle" type="text/css" media="screen">
	@import url( style/test.css );
	</STYLE>
</HEAD>
Une idée ?