|
Your table code is missing something....here's an overview of what most of the table tags do:
<table> - defines that you are starting a table
<tr> - defines a new row in your table
<td> - defines a new column in your table
</td> - ends the column
</tr> - ends the row
</table> - ends the table
To define the width of a table in pixels, just use
<table width="100 "> and change the number in red to your specifications.
__________________
-Sk8er9547
|