Welcome to LyndaRoxanne.Com your eBay auction help site!



How to Make a Bulleted List

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

First type this down arrow

<UL>

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

<LI>

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

</UL>

So a list like this-

Would have HTML that looks like this down arrow

<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 down arrow

<FONT COLOR="BLUE">
<UL>
<LI>
first item
<LI>second item
<LI>third item
</UL>
</FONT>

If you like, you can change the bullets to look like circles.
So a list like this-

Would have HTML that looks like this down arrow

<UL type="circle">
<LI>
First item
<LI>Second item
<LI>Third item
</UL>

You can even do squares like this-

And the HTML looks like this down arrow

<UL type="square">
<LI>
First item
<LI>Second item
<LI>Third item
</UL>


Click here to practice your HTML