- ✕This summary was generated using AI based on multiple online sources. To view the original source information, use the "Learn more" links.
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!✕CopyOrdered 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!✕CopyDescription Lists
HTML Lists - W3Schools
Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.
See results only from w3schools.comTry It Yourself
The W3Schools online code editor allows …
Unordered Lists
Unordered HTML List - Choose List Item …
Tryit Editor V3.6
This page allows you to try out HTML …
Html SVG
The <svg> Element The HTML <svg> …
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 …
- People also ask
HTML Lists (With Examples) - Programiz
See more on programiz.comThe 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…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, …
Searches you might like
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 …
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 …
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
HTML Lists - Complete Tutorial with Examples
Comprehensive tutorial on HTML Lists, including ordered, unordered, and definition lists with examples and advanced styling techniques.
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> …
Lists! - HTML Tutorial
Learn how to create lists in HTML and all the different ways you can modify the display of those lists.