Welcome to LyndaRoxanne.Com your eBay auction help site!






How to Create Tables

The Table tag is useful in auction listings to control the placement of pictures and 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).

Here's a basic table with some text-

<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.


Click here to practice your HTML