Unordered
Unordered lists begin with dots, bullets, dashes, or other visual signifiers. These lists are great for things like ingredients in a recipe. Unordered lists, by default, get a dot in most browsers.
|
|
|
To identify an unordered list, the content is contained within the unordered list tags ( <ul>...</ul>
).
As with the ordered list, contain each list item within a list item element ( <li>...</li>
).
HTML
<ul>
<li>List Item</li>
<li>List Item</li>
<li>Etc...</li>
</ul>
html
- Previous
- Next