HTML Lists

The most common HTML lists are ordered and unordered lists: HTML Ordered Lists An ordered list starts with the
    tag. Each list item starts with the "li" tag. The list items are marked with numbers.
    1. Coffee
    2. Milk
    3. Juice
    HTML Unordered Lists An unordered list starts with the
      tag. Each list item starts with the "li" tag. The list items are marked with bullets.
      • Coffee
      • Milk

      Sample Outputs