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

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -