Improper nesting, or overlapping is prohibited in XHTML. Whilst the following may be acceptable in HTML:
<H1><I>Using italics in a heading</H1></I>
...you will need to write it this way for a well formed XHTML document:
<h1><i>Using italics in a heading</i></h1>