|
|
|
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-
First item
Second item
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-
Would have HTML that looks like this-
<FONT COLOR="BLUE">
<OL>
<LI>First item
<LI>Second item
<LI>Third item
</OL>
</FONT>