Hi everyone. I got this invalid markup validation when validating my site. Here is what I get,
Validation Output: 3 Errors
-
Line 3, Column 1: Missing xmlns attribute for element html. The value should be: http://www.w3.org/1999/xhtml.<html> ✉
Many Document Types based on XML need a mandatory xmlns="" on the root element. For example, the root element for XHTML will look like:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-
Line 195, Column 6: end tag for "body" omitted, but OMITTAG NO was specified.</div> ✉
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
-
Line 15, Column 0: start tag was here.<body>
-
Line 195, Column 6: end tag for "html" omitted, but OMITTAG NO was specified.</div> ✉
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
-
Line 3, Column 0: start tag was here.<html>
|