Convert HTML to XHTML – all documents must be properly formed
Make sure all your XHTML elements are nested within the <html> root element. Sub elements must be in pairs and correctly nested within their parent element.
Here is the basic XHTML document structure:
<html>
<head> ... </head>
<body> ... </body>
</html>