5568 sujets

Sémantique web et HTML

Bonjour,

Error Line 81 column 10: document type does not allow element "h4" here; missing one of "button", "map", "object", "ins", "del", "noscript" start-tag.

<p><h4><a href="equipe_agility.html">Catégorie A</a></h4></p>

The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.

One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

voila ou se trouve l'erreur et comment la corriger?

par avance merci
Modifié par milene76 (19 Mar 2007 - 14:14)
Salut !
milene76 a écrit :
<p><h4><a href="equipe_agility.html">Catégorie A</a></h4></p>


Un élément de type paragraphe ne peut contenir d'élément de type titre (hx) ! par contre il peut venir en successeur de cet élément.
donc
<h4><a href="equipe_agility.html">Catégorie A</a></h4>
<p>... ton texte ...</p>


EDIT : je ne nommerai pas ça "problème de validation" mais "problème de sémantique" Smiley smile
Modifié par Mucsy (19 Mar 2007 - 14:21)