- Web design
- HTML5
- here
[HTML5] ol tag-Create a numbered list
You can use the ol tag to create a numbered list.
<ol> </ol>
To add an item to the numbered list, place the li tag inside the ol tag .
- Item 1
- Item 2
- Item 3
<ol> <li> Item 1 </li> <li> Item 2 </li> <li> Item 3 </li> </ol>
For details on how to create a list, refer to the following articles.