Welcome to LyndaRoxanne.Com your eBay auction help site!
AuctionSniper.com - Powerful eBay sniping solutions.




How to create a Numbered List

Numbered Lists are handy for clearly showing the features of your auction items

First type this-

<OL>

Then before each of the items in your list just type this-

<LI>

When you've finished your list close it off by typing this-

</OL>

So the HTML for a list like this-

  1. First item
  2. Second item
  3. Third item

Would look like this-

<OL>
<LI>
First item
<LI>Second item
<LI>Third item
</OL>

You can make the words in your list coloured by simply typing the tag instructions for changing the font colours.

So a list that looks like this-


  1. First item
  2. Second item
  3. Third item

Would have HTML that looks like this-

<FONT COLOR="BLUE">
<OL>
<LI>
First item
<LI>Second item
<LI>Third item
</OL>
</FONT>


Click here to practice your HTML