bonjours a tous,
voilà W3C ne veut pas reconnaitre cette page comme valide .
Je ne comprend pas pourquoi?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
   <head>
       <title>[TerredeCouleurs] - trompe l’oeil peinture murale meuble peint décorative fresque painting - (http://www.terredecouleurs.fr/) </title>
       <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
	    <link rel="stylesheet" media="screen" type="text/css" title="Design" href="photo01.css" />
   </head>
   <body>
   
   
 <div align="center"> 

  
   <img src="mazet.jpg" alt="trompe-l'oeil" title="Ca fait envie hein ?" />


 <span id="icone"><a class="bouton" href="terredecouleurs-galerie.html"></a></span><!-- mise en place des images clicable VALIDE -->

</div>




	

   </body>
</html>

Modifié par pratoenitalie (24 Sep 2007 - 11:32)
Salut,

le validateur XHTML ne dit jamais non sans donner de raisons... peut etre qu'en postant la raison de cette non validation ce sera plus facile de t'aider.
Salut,

une page en ligne serait plus simple mais déjà tu pourrais enlever :
<div align="center"> 
qui est incorrect avec ton DOCTYPE Smiley cligne .
pratoenitalie a écrit :

voilà W3C ne veut pas reconnaitre cette page comme valide .

L'attribut align n'existe simplement pas avec la DTD choisie. Tu peux modifier ton doctype et passer en xhtml transitional ou supprimer cet attribut invalide en strict et réaliser le positionnement en css.



edit: grillé. Smiley rolleyes
Modifié par Benjamin D.C. (24 Sep 2007 - 10:53)
c'est ce qui il y a d'écrit mais je ne comprend rien en anglais?

Line 11, Column 12: there is no attribute "align".

<div align="center">

&#9993;

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.
#icone a.bouton {
     display: block;
     border:0;
     height: 35px; width: 184px;
     vertical-align: middle;
     background: url(retour-galerie12.gif) 0 0 no-repeat
     }
  #icone a:hover.bouton {
     background-position: -185px 0
    }
	
	
p
{
border-bottom: 1px solid #D6D6D6;
}


img 
{
   border: 1px solid black;
}



sa c'est ma page CSS quoi mettre alors et ou pour que tous mes éléments soit centré?
Je suis un peut perdue Smiley sweatdrop
Tu pourrais essayer dans ta feuille css:

body { text-align:center; }


Et puis il faudrait donner un id à ton div pour pouvoir ensuite dans la feuille de style définir ses propriétés tout en restant conforme à la DTD que tu as choisie.