html - Invalid location of tag (p) -


i have code:

<p class="phelp"> xxxxx <a href="#components">form components</a> yyyyy </p> 

this line inside html/body/a/a/a/a/a/a/a/a/p/#text (<- btw, proper name "html's tag route/path"?)

eclipse gives me other error on line. how should solve this?

it complains sentence...

<a id="pd" /><h5>provisional data</h5> 

...where indicates 'no end tag (</a>).' aren't self-closing tags allowed in html?

thanks!

an interactive anchor element must not appear descendant of anchor element. code appears have multiple levels of nesting of anchor elements.

an anchor element must have start tag , end tag.

see w3c language reference anchor element.


Comments

Popular posts from this blog

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -