The Un-Ordered List element
<ul> element represents an unordered list of items its automatic as a bulleted list. where we not need to specify Serial order.
List Styles Types
- Circle
- Disc
- Square
<ul type = "circle"> <ul type = "disc"> <ul type = "square">
Simple Type
<ul> <li>First Item</li> <li>Second Item</li> <li>Third Item</li> </ul>
Result
- First Item
- Second Item
- Third Item
Circle Type
<ul type = "circle"> <li>First Item</li> <li>Second Item</li> <li>Third Item</li> </ul>
Result
- First Item
- Second Item
- Third Item
Disc Type
<ul type = "disc"> <li>First Item</li> <li>Second Item</li> <li>Third Item</li> </ul>
Result
- First Item
- Second Item
- Third Item
Square Type
<ul type = "square"> <li>First Item</li> <li>Second Item</li> <li>Third Item</li> </ul>
Result
- First Item
- Second Item
- Third Item
(Visited 55 times, 1 visits today)
Written by: