Differences from HTML: XHTML Attributes
XHTML Attributes
//XHTML attribute names must be in lower case
//this is wrong
<table WIDTH="100%">
//this is correct
<table width="100%"> //attribute values must be quoted
//this is wrong
<table width=100%>
//this is correct
<table width="100%">
Semantic portal