HTML <ul> tag
Usage
Defines an unordered list, where the order of the list items is unimportant.
Example
Code:
<ul>
<li>Eggs</li>
<li>Bacon</li>
<li>Milk</li>
</ul>
Output:
- Eggs
- Bacon
- Milk
Required Attributes
- none
Optional Attributes
- none
Defines an unordered list, where the order of the list items is unimportant.
<ul>
<li>Eggs</li>
<li>Bacon</li>
<li>Milk</li>
</ul>