|
|
|
The Table tag is useful in auction listings to control the placement of pictures and text.
Here's a basic table with some text-
All tables must begin with <TABLE> and end with </TABLE>, and they must contain at least one <TR><TD> and </TD></TR> set. The TR stands for Table Row and the TD stands for Table Definition (or what is in the row).
<TABLE>
<TR><TD>
This is an example of a table
<P>
Pretty easy huh!
</TD></TR>
</TABLE>
And it will look like this-
| This is an example of a table Pretty easy huh! |
You can add a border to your table like this-
<TABLE BORDER="4">
<TR><TD>
This is an example of a table
<P>
Pretty easy huh!
</TD></TR>
</TABLE>
And it will look like this-
| This is an example of a table Pretty easy huh! |
Adding an image into the table is done like this-
<TABLE BORDER="4">
<TR><TD>
This is an example of a table
<P>
Pretty easy huh!
</TD></TR>
<TR>
<TD>
<CENTER>
<IMG SRC="www.yourimagehost.com/yourname/yourpicsname">
</CENTER>
</TD></TR>
</TABLE>
And will look like this-
| This is an example of a table Pretty easy huh! |
![]() |
To learn how to add backgrounds to your table click on the Backgrounds button in advanced HTML.