Sample Table Code from the above table:
<center>
<table border color="#ff99ff" border=20 cellpadding="20" width="20%">
<tr bgcolor="#6600ff">
<td>
<h1>Tables</h1>
</td>
</tr>
</table>
</center>
What the parameters do:
- bordercolor: color of the border
- border: width (in pixels) of the border
- cellpadding: measurement (in pixels) from the text to the border
- width: percentage of the viewable area used for the table
- bgcolor: used with the <tr> or <td> tags, it provides a
background color
Notes:
- In order for the "bordercolor" parameter to work, you MUST NOT specify
a "bgcolor" parameter in your "body" tag. The white background
in this page was made by creating a TINY (5 pixel by 5 pixel)
gif image and using the "background=" parameter.
Return to HTMLpage