Figure 5-1. HTML table rendered by Navigator (top) and by Explorer (bottom)
Here is the code that renders the table:
<table border cellspacing=0 cellpadding=5>
<caption align=bottom> Kumquat versus a poked
eye, by gender</caption>
<tr>
<td colspan=2 rowspan=2></td>
<th colspan=2 align=center>Preference</th>
</tr>
<tr>
<th>Eating Kumquats</th>
<th>Poke In The Eye</th>
</tr>
<tr align=center>
<th rowspan=2>Gender</th>
<th>Male</th>
<td>73%</td>
<td>27%</td>
</tr>
<tr align=center>
<th>Female</th>
<td>16%</td>
<td>84%</td>
</tr>
</table>
The contents of table cells may be any data that can be displayed in
an HTML document. This can be plain text, images, tagged text, and
other HTML structures. The table cells are sized according to their
contents and in relation to other cells.