2. XHTML Element Nesting

XHTML elements are required to be properly nested.

Example 2.1 Incorrect Element Nesting
<div><a href="index.html">link</div></a>	
	
Example 2.2 Correct Element Nesting
<div><a href="index.html">link</a></div>