Content for id "hnav" Goes Here
Unit 2: Tables - Chapter 16
Creating Simple, Accessible Tables
Task Code Comment
caption <caption>Creating Tables</caption> Accessibility.
table <table><tr><td>Data</td></tr<table>  
header <th></th> Substitute for <td> column or row tags
align <td align="center">Data</td> Can also be done in CSS:
vertical align <td valign="top">Data</td>  
Nesting Tables Don't! Accessibility problems. Provide Navigation.
cell background color <td bgcolor="#339966">Data</td>  
table bgcolor <table bgcolor attribute is deprecated. Use CSS table{background:#CCF;}