XHTML: Quote Values

In HTML you can sometimes omit the quotes around attribute values. In XHTML, all attribute values must always be enclosed within quotation marks, even those which appear to be numeric.

Using unquoted attribute values is not acceptable:
<table width=100%>
Using quoted attribute values is acceptable:
<table width="100%">
Back button Table of Contents Next button