Introduction to HTML - Part 10 (Layout)

Tables are the primary layout mechanism for complicated web-pages. For example:
<table width=100% border=1>
<tr>
<th width=20%>Corner</th>
<th width=80%>Top</th>
</tr>
<tr>
<td>Side</td>
<td>
Document Body
</td>
</table>

Next