Share
XHTML Documents Must Have One Root Element
All XHTML elements must be nested within the root element.
Child elements must be in pairs and correctly nested within their parent element.
The basic document structure is:
<html>
<head> ... </head>
<body> ... </body>
</html>