Hi guys,
I am trying to validate a new monthly records page and I'm getting this validation error.
Line 724, Column 9: end tag for "html" which is not finished
</html>
✉
Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.
Can you tell me how I solve this because I know how to validate some stuff but not this?

Thanks
Will