HTML List – How to Use Bullet Points, Ordered, and ...
https://www.freecodecamp.org/news/html-list-how-to-use-bullet-points...01.07.2021 · In HTML, we can list items either in an ordered or unordered fashion. An ordered list uses numbers or some sort of notation that indicates a series of items. For example, an ordered list can start with number 1, and continue through 2, 3, 4, and so on. Your ordered list can also start with the letter A and go through B, C, D, and so on.
HTML Ordered Lists - W3Schools
www.w3schools.com › html › html_lists_orderedThe HTML <ol> tag defines an ordered list. An ordered list can be numerical or alphabetical. Ordered HTML List An ordered list starts with the <ol> tag. Each list item starts with the <li> tag. The list items will be marked with numbers by default: Example <ol> <li> Coffee </li> <li> Tea </li> <li> Milk </li> </ol> Try it Yourself »