HTMLBasix fully recommends Hostmonster as your host of choice.
Masses of space, transfer (yes, that's 15 TB!!!), great uptime. All for a VERY affordable price!
<table border="2" bordercolor="#008080" width="400">
<tr>
<td> setting the width of the table to 400 px
</td>
</tr>
</table>
setting the width of the table to 400 px
<table border="2" bordercolor="#008080" width="400">
<tr>
<td width="200"> setting the width of the table to 400 px and the data cell to 200 px.
</td>
</tr>
</table>
setting the width of the table to 400 px and the data cell to 200 px. Note that the data doesn't span across the whole width of the table.
<table border="2" bordercolor="#008080" height="200">
<tr>
<td> setting the height of the table to 200 px
</td>
</tr>
</table>
setting the height of the table to 200 px
<table border="2" bordercolor="#008080">
<tr>
<td height="200"> setting the height of the data cell to 200 px forces the size of the table to 200 px if it's not set.
</td>
</tr>
</table>
setting the height of the data cell to 200 px forces the size of the table to 200 px if it's not set.
aligns the contents of the table (the data cells) to the left. Use the same format for the 'center' and 'right' attributes.
<tr align="left">
aligns the contents of each of the data cells in the row to the left. Use the same format for the 'center' and 'right' attributes. This saves having to set each data cell in the row.
<td align="left">
aligns the contents of the data cell to the left. Use the same format for the 'center' and 'right' attributes.
<table valign="top">
vertically aligns the contents of the table (the data cells) to the top. Use the same format for the 'middle' and 'bottom' attributes.
<tr align="top">
aligns the contents of each of the data cells in the row to the top. Use the same format for the 'middle' and 'bottom' attributes. This saves having to set each data cell in the row.
<td valign="top">
vertically aligns the contents of the data cell to the top. Use the same format for the 'middle' and 'bottom' attributes.
<table align="center" valign="bottom">
aligns the contents of the table cell to the bottom center.
<tr align="center" valign="bottom">
aligns the contents of each of the data cells in the row to the bottom center. This saves having to set each data cell in the row.
<td align="center" valign="bottom">
aligns the contents of the data cell to the bottom center.