3. XHTML Well-Formed Document

XHTML elements are required to be nested within the html root element. Elements are required to be in pairs or properly self closed. Elements are required to be correctly nested with their corresponding parent element.

Example 3.1 Basic Document Structure
<html>
	<head></head>
	<body></body>
</html>