HTML Tutorial

The language for building web pages.

HTML Lists

HTML Lists

HTML supports ordered lists, unordered lists, and description lists.

Types of Lists:

  • Unordered List <ul> - bullet points
  • Ordered List <ol> - numbered items
  • Description List <dl> - term + description pairs

List Item Type Attribute (ol):

  • type="1" - Numbers (default)
  • type="A" - Uppercase letters
  • type="a" - Lowercase letters
  • type="I" - Uppercase Roman
  • type="i" - Lowercase Roman

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics