HTML is not about presentation, it's about semantic structure. You can build a list with paragraphs, line breaks, and the bullet point character; it will look about the same if you do. But anything that isn't a human looking at your website won't be able to tell it's a list; they'll see it for exactly what it is, a bunch of paragraphs with bullet point characters. So things like screen readers might read it incorrectly, trying to actually pronounce the bullet point. Software like Google's indexing engines won't be able to treat the list as a list of potential keywords or search terms, or to pull it out into an info box for display. Using semantic HTML allows for machines to parse your page just as easily as humans. Answer from scirc on reddit.com
Internshala
trainings.internshala.com › home › programming › what is a list in html?
What is a List in HTML? - Types, Tags, Advantages, & More
September 24, 2025 - Learn what is list in HTML - ordered, unordered, and description lists. Explore how they can be used to organize and structure information on web pages.
Videos
01:58
HTML Lists Explained In 2 Minutes | Intro To HTML - YouTube
10:52
HTML Lists Tutorial | HTML5 List Types: Ordered, Unordered & ...
04:36
Learn HTML lists in 4 minutes 📋 - YouTube
06:35
Learn HTML lists in 6 minutes! 📄 - YouTube
22:51
Lists in HTML - YouTube
Learn HTML lists in 4 minutes
Simplilearn
simplilearn.com › home › resources › software development › html list tag: the best way to implement it
HTML List Tag: The Best Way to Implement It
September 11, 2025 - What is an HTML list? The HTML list tag helps group related information, learn the ✅HTML unordered lists ✅HTML ordered lists ✅HTML description lists.
Address 5851 Legacy Circle, 6th Floor, Plano, TX 75024 United States
Reddit
reddit.com › r/learnprogramming › what's the point in coding a list in html?
r/learnprogramming on Reddit: What's the point in coding a list in HTML?
January 3, 2023 -
There's the ordered <ol> and unordered list <ul>.
The ordered list adds a number before the text, such as:
Germany
France
Romania
The unordered list just adds bullet points, such as:
• Germany
• France
• Romania
My question is: What's the point of them? Can't you just use a paragraph <p> and line breaks <br> to create your list? Without all the unnecessary <ol> <li> </li> </ol>?
I mean It's not that hard to just type in the "1. ; 2. ; 3." or copy paste a bullet point off the internet.
Top answer 1 of 9
122
HTML is not about presentation, it's about semantic structure. You can build a list with paragraphs, line breaks, and the bullet point character; it will look about the same if you do. But anything that isn't a human looking at your website won't be able to tell it's a list; they'll see it for exactly what it is, a bunch of paragraphs with bullet point characters. So things like screen readers might read it incorrectly, trying to actually pronounce the bullet point. Software like Google's indexing engines won't be able to treat the list as a list of potential keywords or search terms, or to pull it out into an info box for display. Using semantic HTML allows for machines to parse your page just as easily as humans.
2 of 9
20
Why use
and
when you can achieve the same with just
MDN Web Docs
developer.mozilla.org › en-US › docs › Learn_web_development › Core › Structuring_content › Lists
Lists - Learn web development | MDN
August 21, 2025 - Now let's turn our attention to lists. Lists are everywhere in life—from your shopping list to the list of directions you subconsciously follow to get to your house every day, to the lists of instructions you are following in these tutorials! It may not surprise you that HTML has a convenient set of elements that allows us to define different types of list.
UTMB Health
utmb.edu › web › 4x › components › html-lists
Typography - HTML Lists
There are three main types of lists in HTML: unordered lists (<ul>), ordered lists (<ol>), and definition lists (<dl>). Within the Sitefinity Content Management System we’ve adopted a consistent use of the same fonts, sizing, color and formatting options so as users are building the website content, there is ...
CodeHS
codehs.com › tutorial › 12387
HTML Lists - Tutorial
Learn how to use ordered and unordered lists in HTML.
Colorado State University
engr.colostate.edu › ets › html-lists
HTML Lists – Engineering Technology Services
HTML has a set of tags for the purpose of displaying lists. The use of these tags are essential to organizing information on you web site. In fact the list below uses the <dl> definition list tag to organize the information with nested unordered list tags. One thing to keep in mind when using lists is that certain tags (the <li> tag for example) must be placed within another tag to be displayed correctly on your web site.
W3Schools
w3schools.com › html › html_lists.asp
HTML Lists
HTML lists allow web developers to group a set of related items in lists.
Tutorialspoint
tutorialspoint.com › html › html_lists.htm
HTML - Lists
HTML lists are group or collection of items. These items can be both organized and unorganized depending on the requirement. They help in organizing, structuring, and presenting information to make it more user-friendly, readable, and accessible.
W3Schools
w3schools.com › html › html_lists_ordered.asp
HTML Ordered Lists
For a complete list of all available HTML tags, visit our HTML Tag Reference. ... If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail: sales@w3schools.com
W3Schools
w3schools.com › html › html_lists_unordered.asp
HTML Unordered Lists
HTML lists can be styled in many different ways with CSS. One popular way is to style a list horizontally, to create a navigation menu:
Shay Howe
learn.shayhowe.com › html-css › creating-lists
Creating Lists - Learn to Code HTML & CSS
Learn to Code HTML & CSS is written by designer & front-end developer Shay Howe. Checkout Learn to Code Advanced HTML & CSS for a deeper look at front-end design & development. Want to learn to more HTML & CSS, or study other topics? Find the right course for you. ... Lists are a part of everyday life. To-do lists determine what to get done. Navigational routes provide turn-by-turn lists of directions. Recipes provide lists of ingredients and lists of instructions.
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › HTML › Reference › Elements › li
<li>: The List Item element - HTML | MDN
The <li> HTML element is used to represent an item in a list. It must be contained in a parent element: an ordered list (<ol>), an unordered list (<ul>), or a menu (<menu>). In menus and unordered lists, list items are usually displayed using bullet points.
data.europa.eu
data.europa.eu › apps › data-visualisation-guide › html-lists
HTML lists
Both types of lists contain a list of list items defined with <li> tags. <!DOCTYPE html> <html> <head> <title>Webdev 101</title> </head> <body> <h1>The POUR principles</h1> <p>The 4 POUR principles are:</p> <ol> <li>Perceivable</li> <li>Operable</li> <li>Understandable</li> <li>Robust</li> </ol> <p>The additional CAF principles are:</p> <ul> <li>Compromising</li> <li>Assistive</li> <li>Flexible</li> </ul> </body> </html>
Montclair State University
montclair.edu › university-communications › web-development-and-experience › html-tips-and-accessibility › lists
Lists – University Communications And Marketing - Montclair State University
There are three types of lists provided by HTML, and each serves a slightly different function. UL (unordered list) provides a list of items where the order is not important. OL (ordered list) provides a list of items where order is important. DL (definition list) provides a way to pair terms with definitions.
IONOS
ionos.com › digital guide › websites › web development › html lists
What are HTML lists? How to use , and tags
December 16, 2025 - While ordered and unordered lists are commonly used, definition lists (also known as description lists) are much less common. In the sections below, we’ll take a closer look at the different types of HTML lists and their syntax. An ordered HTML list is a list made up of items that you can arrange in a sequential order using number or letters.