About 3,630,000 results
Open links in new tab
  1. HTML lists are essential for organizing and presenting information in a structured way on web pages. They allow grouping related items, making content easier to read and understand. There are three main types of lists in HTML: unordered lists, ordered lists, and description lists.

    Unordered Lists

    Unordered lists are used when the order of items does not matter. They are created using the <ul> tag, and each item is defined with the <li> tag. By default, items are displayed with bullet points.

    Example:

    <ul>
    <li>Apples</li>
    <li>Bananas</li>
    <li>Cherries</li>
    </ul>
    Copied!

    Ordered Lists

    Ordered lists are used when the sequence of items is important. They are created using the <ol> tag, and each item is defined with the <li> tag. Items are displayed with numbers by default.

    Example:

    <ol>
    <li>Wake up</li>
    <li>Brush teeth</li>
    <li>Have breakfast</li>
    </ol>
    Copied!

    Description Lists

    Feedback
  2. Lists - Learn web development | MDN

    Aug 21, 2025 · On the web, we have three types of lists: unordered, ordered, and description lists. This lesson shows you how to use the different types. Basic HTML familiarity, as covered in …

  3. People also ask
  4. HTML Lists (With Examples) - Programiz

    The unordered list is used to represent data in a list for which the order of items does not matter. In HTML, we use the <ul> tag to create unordered lists. Each item of the list must be a <li>tag which represents list items. For example, Browser Output Here, <li>Apple</li>, <li>Orange</li>, and <li>Mango</li>are the list items. T…
    See more on programiz.com
  5. HTML - Lists - Online Tutorials Library

    To display a list of information in HTML, we use various list tags like <ul>, <ol>, and <ll>. HTML offers web developers three ways for specifying lists of information, namely ordered, …

  6. Searches you might like

  7. Lists - Learn HTML - Free Interactive HTML Tutorial

    HTML provides a way to create both an ordered list (with elements counting up, 1, 2, 3...) and an unordered list with bullets instead of numbers. Lists …

  8. HTML Ordered, Unordered, and Definition Lists - Tutorial Republic

    In this tutorial you will learn how to create different types of lists in HTML. HTML lists are used to present list of information in well formed and semantic way. There are three different types of …

  9. HTML Lists- Ordered, Unordered, and Description …

    In HTML, there are three main types of lists: unordered, ordered and description lists. Each of them is defined using different tags

  10. HTML Lists - Complete Tutorial with Examples

    Comprehensive tutorial on HTML Lists, including ordered, unordered, and definition lists with examples and advanced styling techniques.

  11. HTML Lists - HTML Tutorial | HTML Free Codes

    HTML has three list types: unordered lists (<ul>) with bullets, ordered lists (<ol>) with numbers, and definition lists (<dl>) for term-description pairs. Each uses <li> for list items (or <dt>/<dd> …

  12. Lists! - HTML Tutorial

    Learn how to create lists in HTML and all the different ways you can modify the display of those lists.