Current Assignment(s)
A3: Markup
P1 Workshop (Assessments)
Due 11:55PM Monday, 10.15
P1 Workshop (Assessments)
Due 11:55PM Monday, 10.15
Ordered
Ordered lists are those where each entry is prepend with an ascending identifier such as numbers, letters, or Roman numerals.
|
|
|
To identify a list, the content must be surrounded by the ordered list tags. ( <ol>...</ol>
)
Each “list item” must be surrounded by the list item tags. ( <li>...</li>
).
HTML
<ol>
<li>List Item</li>
<li>List Item</li>
<li>Etc...</li>
</ol>
html
- Previous
- Next