You can also think about putting table information like that in a stylesheet and referencing the stylesheet in pages that use those styles. This will save you time when you need to change the style settings later. You can just change the stylesheet later, upload it, and all the pages that use the styles will be updated with the new one.
Here's part of the stylesheet of my website, hope it'll give you a few ideas and things to try out:
----------
body
{
background-color:#f0f0f0;
scrollbar-face-color:#f9f9f9;
scrollbar-shadow-color:#000000;
scrollbar-highlight-color:#000000;
scrollbar-3dlight-color:#f9f9f9;
scrollbar-darkshadow-color:#ffffff;
scrollbar-track-color:#f9f9f9;
scrollbar-arrow-color:#000000;
margin-left:10px;
margin-top:0px;
}
.nav_body
{
margin-top:1px;
margin-left:1px;
margin-bottom:1px;
margin-right:1px;
}
td,.tdBorder {vertical-align:top}
.tdBorder {border-style: solid; border-width:1px; border-color:#336699}
.tableA,.tableB,.navTableA {border:1px solid #336699; padding:3px; vertical-align:top}
.navTableA {width:148px}
.tableA {width:100%}
.navTableHeadA {background-color:#336699; text-align:center}
.navTableHeadTextA {color:#f0f0f0}
.navTableCellA {background-color:#f0f0f0}
.navTableB {width:148px; border:1px solid #003366; padding:3px; vertical-align:top}
.navTableHeadB {background-color:#f0f0f0; text-align:center}
.navTableHeadTextB {color:#003366}
.navTableCellB {background-color:#003366}
----------
Cheers.