Unordered List
Unordered List <ul></ul>
Unordered List also called as bulleted list, used to present list of items marked with bullets.
An unordered list starts with in <UL> followed by <LI> (List Item) tag.
Syntax:
<ul>
<li>list Item 1</li>
<li> List item 2</li>
</ul>
Attribute of <ul> Tag:
Attribute | Description | Possible Values |
Type | to set the bullet style. | disk, square, circle (Default – disk) |
Example:
<h3>List of Courses</h3>
<ul type="square">
<li>Java</li>
<li>Python</li>
<li>PHP</li>
<li>HTML</li>
</ul>
It will produce Following Output: