In this tutorial we will create a web page containing a header and 3
customizable columns. Create a layout of the page, e.g. using tables:

The code:
<table
cellpadding="5"
style="width:
100%;
vertical-align:
top;">
<tr>
<td
colspan="3"
class="header">
Header
</td>
</tr>
<tr>
<td
class="column">
1st column
</td>
<td
class="column">
2nd column
</td>
<td
class="column">
3rd column
</td>
</tr>
</table>
CSS styles:
.header
{
text-align:
center;
background-color:
#CCCCFF;
}
.column
{
vertical-align:
top;
width:
33%;
background-color:
#CCFFCC;
}