Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 2: HTML Essentials: Elements and Lists!
Instruction
Ordered Lists
Ordered lists (<ol>
) are used when the items in a list have a specific sequence, like steps in a process or ranked lists. You can adjust the starting number or letter by using the start
attribute in the <ol>
tag.
-
Element:
<ol>
wraps the list, with each<li>
representing an ordered step.
- Start Attribute: Allows you to continue numbering from a previous list by setting...