The ordered list start with <ul> tag and list items start with <li> tag.
All the lists in HTML are marked with bullets by default.
HTML Unordered List is also known as Bulleted List.
| Type | Description |
|---|---|
disc |
This is the default style. In this style, the list items are marked with bullets. |
circle |
The list items display as marked with circles. |
square |
The list items display as marked with squares. |
none |
The list items are not marked . |
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>PHP</li>
</ul>
type="circle"
<ul type="circle" >
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>PHP</li>
</ul>
type="square"
<ul type="square" >
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>PHP</li>
</ul>
type="none"
<ul type="none" >
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>PHP</li>
</ul>
<ul style="list-style-type: square;" >
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>PHP</li>
</ul>
| Element | |||||
|---|---|---|---|---|---|
| <ul> | Yes | Yes | Yes | Yes | Yes |