|
|
|
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-
First item
Second item
Third item
Would have HTML that looks like this
<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
<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
<UL type="square">
<LI>First item
<LI>Second item
<LI>Third item
</UL>