HTML Help
You can enhance your auction listing by using HTML in your description. Using HTML, you can add additional images, present information in a table, or enhance parts of your text by making it a different size or color.

Below is a primer on some of the basic HTML tags you can use. We recommend that you test your HTML code before you submit your auction.  For more HTML information, visit one of the many HTML resources on the internet, such as: HTMLGoodies.com. webmonkey.com, or netmechanic.com.

Note: Some html tags (including header and link tags) are not allowed.

Text Tags
<b>
Starts bold text
</b>
Ends bold text
bold HTML code:

This is <b>Bold</b> text.

bold actual display

This is Bold text.

<i></i>
Creates italic text
<u></u>
Creates underlined text
<font size="?"></font>
Sets size of font, from 1(smallest)  to 7(largest) )
font size HTML code:

Set font size <font size="5">to 5</font>.

font size actual display:

  Set font size to 5.

<small></small>
Creates one size smaller text
<big></big>
Creates one size
larger text
<font color="?"></font> 
Sets font color, using name or hex value
font color HTML code:

This is <font color="red">red text.</font>

font color actual display:

 This is red text.


Text Formatting
<p>
Creates a new paragraph
paragraph HTML code:

First line<p>Second line

paragraph actual display:

First line

Second line

<p align="center">
Aligns a paragraph to the left, right, or center

<br>
Inserts a line break
paragraph HTML code:

First line<br>Second line

paragraph actual display:

First line
Second line

<ul></ul>
Creates a bulleted list
<ol></ol>
Creates a numbered list
<li></li>
Encloses each list item, and adds a bullet or a number
bulleted list HTML code:
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
bulleted list actual display:
  • one
  • two
  • three
Images
<img src="http://yourwebsite.com/yourimagefolder/yourimage.jpg">
Adds an image
<hr>
Inserts a horizontal rule
Tables
<table></table>
Creates a table
<tr></tr>
Sets off each row in a table
<td></td>
Sets off each cell in a row (note: in each table, each row must have the same number of cells)

Help us build a comprehensive Help system.  If this Help page did not answer your question, click here to send your question to the administrator.  You can also check our other Help pages or our FAQ.