<ul>

BrandonDusch580 total contributions
Published Jul 1, 2022
Contribute to Docs
The <ul>
element represents an unordered list of items.
Syntax
<ul>
<li><!-- Content here --></li>
</ul>
By default, each list item is prepended with a dot marker. But this can be altered by changing the value of the list-style-type
property.
Example
The following example showcases an unordered list with items that contain text and emoticons:
<ul><li>Play more music 🎸</li><li>Read more books 📚</li></ul>
Each rendered list item will have a dot marker:
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.