Quick Intro to Tables

Tables

You will need the following tags for tables:

Here is an example:

Aloha
Greeting Hello
Goodbye

The above table can be built with tags:

<table>
<tr><th colspan='2'> Aloha </th></tr>
<tr><td rowspan='2'> Greeting </td> <td> Hello </td></tr>
<tr><td> Goodbye </td></tr>
</table>

Spanning Rows and Columns

The rowspan= and colspan= attributes of td and th cells can be make an individual cell stretch across multiple rows or columns in a table. In the above example,

Vertical Alignment

The td and th cells can use the valign= attribute to align their content to the 'top', 'bottom', or 'center' of a cell (using one of those three values).
TAG SOUP - TIDY ME PLEASE:)