Unordered List
Here’s an example of a unordered list:
- text
- text
- text
There are 3 types of unordered list. Pick the one that you prefer.
But keep in mind that the type element have been deprecated.
Therefore, in XHTML, it is better to use the style element.
Disc
- text
- text
- text
Circle
- text
- text
- text
Square
- text
- text
- text
Here’s the code:
<ul> <li> text</li> <li> text</li> <li> text</li> </ul>
For Disc:
<ul style="list-style-type: disc;"> <li> text</li> <li> text</li> <li> text</li> </ul>
For Circle:
<ul style="list-style-type: circle;"> <li> text</li> <li> text</li> <li> text</li> </ul>
For Square:
<ul style="list-style-type: square;"> <li> text</li> <li> text</li> <li> text</li> </ul>