The validator found an end tag for the above element, but that element is not currently open. This is often caused by:
If this error occured in a script section of your document, you should probably read this FAQ entry.
![]() | <b>abc</b></b> |
![]() | <b>abc</b> |
This can also be due to bad javascript:
![]() | document.write("</h1>"); |
![]() | document.write("<\/h1>"); |
In such case, you need to escape the </ with "\".
For a closing tag, remove the closing tag or add the missing opening tag before.