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.
The SGML parser reports this error for FORM, if the opening FORM's action attribute is not enclosed in quotes, at least for HMTL Transitional, when the quotes are good practice, rather than necessary.
![]() | <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.