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>
</table>
<tr><th colspan='2'>
Aloha
</th></tr>
<tr><td rowspan='2'>
Greeting
</td>
<td>
Hello
</td></tr>
<tr><td>
Goodbye
</td></tr>
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,
