XHTML: Lowercase Attributes

In HTML, attributes can be written in uppercase or lowercase characters. In XHTML, all attribute names MUST be written in lowercase.

This is wrong way:
<table WIDTH="100%">
This is correct way:
<table width="100%">
Back button Table of Contents Next button