Current Assignment(s)
A3: Markup
P1 Workshop (Assessments)
Due 11:55PM Monday, 10.15
P1 Workshop (Assessments)
Due 11:55PM Monday, 10.15
Unordered
Unordered lists are those that which 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, each list item is contained within a list item element ( <li>...</li>
).
HTML
<ul>
<li>List Item</li>
<li>List Item</li>
<li>Etc...</li>
</ul>
html
- Previous
- Next