Keeping track of so many opening and closing tags seems daunting, but it is not impossible. I find it best to work from the outside to the inside. When you write an opening tag, go ahead and write the closing tag for it. This helps prevent lost or forgotten tags. Begin with the outermost layer:
<table>
</table>
Then add the next layer of tags within:
<table>
<tr><td>
</td></tr>
</table>and keep going...
<table>
<tr><td>
text, links, graphics, etc...
</td></tr>
</table>
I would also recommend using percentages when defining width values. This will allow the table to best fit the screen depending on what screen resolution your viewers are using. It is not perfect, but it will be an improvement in trying to let your page be seen by different computers.
You can learn more about coloring and styling for your tables at Annabella's HTML Help.
|