HTML Unordered List
The HTML <ul>
tag defines an unordered (bulleted) list.
The CSS List-style-type
property is used to define the style of the list item marker. It can have one of the following values:
The CSS List-style-type
property is Further classified in 4 Types:
- Disc - Sets the list item marker to a bullet (default)
- Circle - Sets the list item marker to a circle
- Square - Sets the list item marker to a square
- None - The list items will not be marked
1. Disc
<ul style="list-style-type: disc;">
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
- One
- Two
- Three
2. Circle
<ul style="list-style-type: circle;">
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
- One
- Two
- Three
3. Square
<ul style="list-style-type: square;">
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
- One
- Two
- Three
4. none
<ul style="list-style-type: none;">
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
- One
- Two
- Three