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!
There are various attributes you can use in your tables which will change the way they are displayed. By doing this, you can display your tables/data exactly how you want it displayed on your page.
You can use all of the attributes in the one tag, for example:
<table border="2" bordercolor="#008080"cellpadding="0" cellspacing="0">
<tr>
<td> If you don't set the cellpadding and cellspacing, it naturally uses a 1px space. To gain greater control, set them.
</td>
</tr>
</table>
If you don't set the cellpadding and cellspacing, it naturally uses a 1px space. To gain greater control, set them.
<table border="2" bordercolor="#008080"cellpadding="10" cellspacing="0">
<tr>
<td> cellpadding set to 10
</td>
</tr>
</table>
cellpadding set to 10
<table border="2" bordercolor="#008080"cellpadding="0" cellspacing="10">
<tr>
<td> cellspacing set to 10
</td>
</tr>
</table>
cellspacing set to 10
<table border="2" bordercolor="#008080"cellpadding="10" cellspacing="10">
<tr>
<td> cellspacing and cellspacing set to 10
</td>
</tr>
</table>