Unordered List in HTML | How To use Bullets in HTML ?
HTML Unordered List
HTML unordered list
is a collection of related items that are listed with no special order or sequence. This list is created by using HTML <ul>
tag. Each item in the list is marked with a bullet. Each item starts with <li>
tag.
Look at the example below to understand how to use HTML Unordered List:
type
Attribute
Unordered List The type
attribute is used to change the series type.
Value | Description |
---|---|
type="disc" |
Sets the list item marker to bullet (default) |
type="circle" |
Sets the list item marker to a circle |
type="square" |
Sets the list item marker to square |
type="none" |
The list items will not be marked |