HTML Ordered Lists - W3Schools
https://www.w3schools.com/html/html_lists_ordered.aspThe 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 »
HTML Lists - W3Schools
https://www.w3schools.com/HTML/html_lists.aspOrdered 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 » HTML Description Lists HTML also supports description lists.
HTML Lists - W3Schools
www.w3schools.com › HTML › html_listsHTML Description Lists. HTML also supports description lists. A description list is a list of terms, with a description of each term. The <dl> tag defines the description list, the <dt> tag defines the term (name), and the <dd> tag describes each term: