|
how do i make bulleted lists?
Just copy and paste this code (add
your own info):
<UL>
<LI>Cat
<LI>Dog
<LI>Bird
</UL>
It will look like this:
Here's a variation of the above list, replace the <UL> tag with this tag:
<UL type="circle">
The result:
You can make the cirles in the above list squares instead by adding
type="square" into the code (<UL type="square">).
It
looks like this:
|