Layout Table
Tables are for tabular data only.
<!-- This is bad! Please do not copy! -->
<body>
<table>
<tr>
<td colspan="2">
<!-- page header/banner -->
<img src="sitelogo.jpg" />
</td>
</tr>
<tr>
<td>
<h2>Sidebar</h2>
<!-- sidebar content -->
</td>
<td>
<h1>Page Header</h1>
<!-- main content -->
</td>
</tr>
<tr>
<td colspan="2">
<!-- page footer -->
</td>
</tr>
</table>
</body>
<!-- Urgh, I felt dirty writing that. The things I do for you all. -->Legacy Code
The CSS Table Model
Last updated