yeah as wozzym said... i dont know how you want it.. Three in a row, left to right or three in a row up and down?
Left-to-right
CODE
<table>
<tr>
<td>one cell</td>
<td>two cell</td>
<td>three cell</td>
</tr>
</table>
Up and down
CODE
<table>
<tr>
<td>one cell</td>
</tr>
<tr>
<td>two cell</td>
</tr>
<tr>
<td>three cell</td>
</tr>
</table>
And then there is even one cell on top of two other cells
CODE
<table>
<tr>
<td colspan="2">one cell, on top</td>
</tr>
<tr>
<td>one cell on bottom</td>
<td>another on bottom</td>
</tr>
</table>
hope that helped.