Current Assignment(s)
A3: Markup
Due: Recommended by Monday, 5.28
Due: Recommended by Monday, 5.28
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>This is a list item.</li>
<li>This is another list item.</li>
<ul>
- Previous
- Next