5568 sujets

Sémantique web et HTML

bonsoir j'ai un petit soucis de validation sur le site du w3c pour une page web
http://bacaultm.neuf.fr/index.html (j'ai corrige les erreurs que sur cette page pour l'instant)
voila ce que me met le validateur:


You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.


et voila mon code html:
  <form method="post" name="formu" action="">
		                <fieldset>

			                  <legend></legend>

			                        <select name="style">
				                      ...


et le petit bout de javascript:
<script type="text/javascript">
    function changestyle(){
   var valeur=document.forms["formu"].style.value;     
   if (valeur=='bleu') { setActiveStyleSheet('bleu'); return false; }
   if (valeur=='rouge') {setActiveStyleSheet('rouge'); return false;}
    if (valeur=='sans') {setActiveStyleSheet('sans'); return false;}
    if (valeur=='degrade') {setActiveStyleSheet('degrade'); return false;}

}


J'ai cherche sur le forum mais rien trouve qui puisse m'aider, et j'avoue que l'angalis et moi pour lire la doc du w3c c'est pas évident!

que puis je faire avec mon petit bout de code pour que je puisse coller le logo du w3c sur ma page?

merci!
Modifié par ours-blanc- (23 Jan 2007 - 20:58)
IL faut utiliser id à la place de name pour ton élément form.
Cela n'a aucune conséquence pour un éventuel code javascript si celui-ci est conçu selon les normes.