How to Make a Bulleted List

Bullets can be very handy for pointing out the features in your auction items.

First type this-

<UL>

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-

</UL>

So a list like this-

Would have HTML that looks like this-

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

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>
<UL>
<LI>
first item
<LI>second item
<LI>third item
</UL>
</FONT>

You will find a HTML Practice Board by clicking here