In the past, tables were often used to control page layout, but this should now be done with CSS. Tables should only be used for displaying tabular data.
Tables <table> contain one or more rows <tr>.
Each row contains one or more cells – table data <td> or table heading <th> tags.
Cells can contain text or other HTML elements.
Keep tables manageable by good use of indentation.
01 02 03 04 05 06 07 08 09 10 11 12 | < table > < tr > < th >School</ th > < th >Location</ th > </ tr >< tr > < td >Anderson High School</ td > < td >Lerwick</ td > </ tr >< tr > < td >Baltasound High School</ td > < td >Unst</ td > </ tr > </ table > |