XHTML - is HTML formed with XML rules.
XHTML basics:

  • For non-empty elements, end tags are required: <li>item</li>

  • Empty elements must either have an end tag or the start tag must end with />: <br/>, <img src="1.gif" />

  • All attribute values must be quoted: <span style="color:red;">text</span>