W3C quelques erreurs
Fermé
Romain
-
27 avril 2010 à 02:14
creadiff Messages postés 445 Date d'inscription samedi 3 avril 2010 Statut Membre Dernière intervention 3 novembre 2011 - 27 avril 2010 à 22:58
creadiff Messages postés 445 Date d'inscription samedi 3 avril 2010 Statut Membre Dernière intervention 3 novembre 2011 - 27 avril 2010 à 22:58
A voir également:
- W3C quelques erreurs
- Instagram erreur veuillez patienter quelques minutes avant de réessayer ✓ - Forum Instagram
- Impossible d'installer java les commutateurs suivants comportent des erreurs ✓ - Forum Logiciels
- W3c validator php ✓ - Forum PHP
- Veuillez patienter quelques minutes avant de réessayer. - Forum Instagram
- Net user des erreurs ont affecté l'exécution de la commande - Forum Windows
7 réponses
boule97
Messages postés
22970
Date d'inscription
mardi 14 mars 2006
Statut
Contributeur sécurité
Dernière intervention
24 décembre 2016
2 575
27 avril 2010 à 08:11
27 avril 2010 à 08:11
Bonjour
<h1>> <---- à supprimer
<b>Note :</b> <--- css
<ul>
<a href="test.html" target="_blank"> <img style="border:0;width:120px;height:600px" src="test.png" alt="alt" /></a>
</ul> <---- manque <li></li>
<h1>> <---- à supprimer
<b>Note :</b> <--- css
<ul>
<a href="test.html" target="_blank"> <img style="border:0;width:120px;height:600px" src="test.png" alt="alt" /></a>
</ul> <---- manque <li></li>
arnoj
Messages postés
9
Date d'inscription
mardi 1 juillet 2008
Statut
Membre
Dernière intervention
30 avril 2010
27 avril 2010 à 09:06
27 avril 2010 à 09:06
Il me semble que le target="_blank" n'est pas compatible W3C, il faut l'enlever de tous tes liens...
bg62
Messages postés
23408
Date d'inscription
samedi 22 octobre 2005
Statut
Modérateur
Dernière intervention
27 mars 2023
2 324
27 avril 2010 à 10:06
27 avril 2010 à 10:06
blanc n'est pas compatible avec CE doctype .... ou virer 'blanc', ou modifier l'en-tête :)
bg62
Messages postés
23408
Date d'inscription
samedi 22 octobre 2005
Statut
Modérateur
Dernière intervention
27 mars 2023
2 324
27 avril 2010 à 12:02
27 avril 2010 à 12:02
euh ... blank !!!
creadiff
Messages postés
445
Date d'inscription
samedi 3 avril 2010
Statut
Membre
Dernière intervention
3 novembre 2011
58
27 avril 2010 à 12:26
27 avril 2010 à 12:26
Une des erreurs se trouve ici:
<ul>
<a href="http://validator.w3.org/check?uri=referer" target="_blank">
<img style="border:0;width:72px;height:25px"
src="pictures/valid-xhtml10.png"
alt="Valid XHTML 1.0 Strict"
title="Valid XHTML 1.0 Strict" /></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank">
<img style="border:0;width:72px;height:25px"
src="pictures/vcss-blue.gif"
alt="CSS Valide !"
title="CSS Valide !" /></a>
<a href="https://www.mozilla.org/en-US/firefox/" target="_blank">
<img style="border:0;width:120px;height:15px;margin-left:10px"
src="pictures/fire.png"
alt="Fire"
title="Fire" /></a>
</ul>
Tu as une liste, mais aucun élément dans cette liste.
Rajoute des li autour des a.
<ul>
<li><a href="http://validator.w3.org/check?uri=referer" target="_blank">
<img style="border:0;width:72px;height:25px"
src="pictures/valid-xhtml10.png"
alt="Valid XHTML 1.0 Strict"
title="Valid XHTML 1.0 Strict" /></a></li>
<li><a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank">
<img style="border:0;width:72px;height:25px"
src="pictures/vcss-blue.gif"
alt="CSS Valide !"
title="CSS Valide !" /></a></li>
<li><a href="https://www.mozilla.org/en-US/firefox/" target="_blank">
<img style="border:0;width:120px;height:15px;margin-left:10px"
src="pictures/fire.png"
alt="Fire"
title="Fire" /></a></li>
</ul>
<ul>
<a href="http://validator.w3.org/check?uri=referer" target="_blank">
<img style="border:0;width:72px;height:25px"
src="pictures/valid-xhtml10.png"
alt="Valid XHTML 1.0 Strict"
title="Valid XHTML 1.0 Strict" /></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank">
<img style="border:0;width:72px;height:25px"
src="pictures/vcss-blue.gif"
alt="CSS Valide !"
title="CSS Valide !" /></a>
<a href="https://www.mozilla.org/en-US/firefox/" target="_blank">
<img style="border:0;width:120px;height:15px;margin-left:10px"
src="pictures/fire.png"
alt="Fire"
title="Fire" /></a>
</ul>
Tu as une liste, mais aucun élément dans cette liste.
Rajoute des li autour des a.
<ul>
<li><a href="http://validator.w3.org/check?uri=referer" target="_blank">
<img style="border:0;width:72px;height:25px"
src="pictures/valid-xhtml10.png"
alt="Valid XHTML 1.0 Strict"
title="Valid XHTML 1.0 Strict" /></a></li>
<li><a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank">
<img style="border:0;width:72px;height:25px"
src="pictures/vcss-blue.gif"
alt="CSS Valide !"
title="CSS Valide !" /></a></li>
<li><a href="https://www.mozilla.org/en-US/firefox/" target="_blank">
<img style="border:0;width:120px;height:15px;margin-left:10px"
src="pictures/fire.png"
alt="Fire"
title="Fire" /></a></li>
</ul>
Merci à vous,
boule97 > ">" c'est pour mon titre ;)
Le Transitional autorise le target "blank" j'ai changé mon Doctype c'est bon maintenant.
Dernière erreur : http://img230.imageshack.us/img230/886/sanstitrebn.png
Encore merci !
boule97 > ">" c'est pour mon titre ;)
Le Transitional autorise le target "blank" j'ai changé mon Doctype c'est bon maintenant.
Dernière erreur : http://img230.imageshack.us/img230/886/sanstitrebn.png
Encore merci !
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
creadiff
Messages postés
445
Date d'inscription
samedi 3 avril 2010
Statut
Membre
Dernière intervention
3 novembre 2011
58
27 avril 2010 à 19:52
27 avril 2010 à 19:52
Il n'aime pas les <div> vides.... déjà eu ce problème.
creadiff
Messages postés
445
Date d'inscription
samedi 3 avril 2010
Statut
Membre
Dernière intervention
3 novembre 2011
58
27 avril 2010 à 22:58
27 avril 2010 à 22:58
</div></div>
Second message
</p>
</div>
<!-- footer -->
<div id="footer"></div>
</body>
</html>
Second message
</p>
</div>
<!-- footer -->
<div id="footer"></div>
</body>
</html>