🌐
W3Schools
w3schools.com › html › html_lists.asp
HTML Lists
HTML lists allow web developers to group a set of related items in lists.
🌐
W3Schools
w3schools.com › html › html_lists_ordered.asp
HTML Ordered Lists
Use the HTML type attribute to define the numbering type ... For a complete list of all available HTML tags, visit our HTML Tag Reference.
🌐
GeeksforGeeks
geeksforgeeks.org › html › html-lists
HTML Lists - GeeksforGeeks
November 1, 2025 - The <dl> tag defines the description list, the <dt> tag defines the term name, and the <dd> tag describes each term. Here, <dt> (description term) is used for the term being defined, and <dd> (description details) is used for the description.
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › HTML › Reference › Elements › ul
<ul>: The Unordered List element - HTML | MDN
November 7, 2025 - The <ul> HTML element represents an unordered list of items, typically rendered as a bulleted list.
🌐
Simple HTML Guide
simplehtmlguide.com › cheatsheet.php
HTML Cheat Sheet - A Simple Guide to HTML
HTML Cheat Sheet - A simple, quick reference list of basic HTML tags, codes and attributes
🌐
Programiz
programiz.com › html › list
HTML Lists (With Examples)
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.
🌐
W3Schools
w3schools.com › tags
HTML Reference
<!--> <!DOCTYPE> <a> <abbr> <acronym> <address> <applet> <area> <article> <aside> <audio> <b> <base> <basefont> <bdi> <bdo> <big> <blockquote> <body> <br> <button> <canvas> <caption> <center> <cite> <code> <col> <colgroup> <data> <datalist> <dd> <del> <details> <dfn> <dialog> <dir> <div> <dl> <dt> <em> <embed> <fieldset> <figcaption> <figure> <font> <footer> <form> <frame> <frameset> <h1> - <h6> <head> <header> <hgroup> <hr> <html> <i> <iframe> <img> <input> <ins> <kbd> <label> <legend> <li> <link> <main> <map> <mark> <menu> <meta> <meter> <nav> <noframes> <noscript> <object> <ol> <optgroup> <
Find elsewhere
🌐
CodeHS
codehs.com › tutorial › 12387
HTML Lists - Tutorial
Learn how to use ordered and unordered lists in HTML.
🌐
GeeksforGeeks
geeksforgeeks.org › html › html-tags-a-to-z-list
HTML Tags - A to Z List - GeeksforGeeks
3 weeks ago - <!DOCTYPE html> <html> <!-- head tag --> <head> <title>Welcome to Geeksforgeeks</title> </head> <!-- Body tag --> <body> <h2>Geeksforgeeks</h2> <p> A Computer Science Portal for Geeks </p> <p> Please change the code and click the Run the button to see the changes. </p> </body> </html> <!DOCTYPE html> declares the document type, <html> wraps content, <head> holds metadata like <title>. <body> contains visible content, <h2> is a heading, <p> is a paragraph, <!-- --> are comments. Let us see the extensive list of HTML tags, from A to Z.
🌐
W3Schools
w3schools.com › html › html_lists_unordered.asp
HTML Unordered Lists
The HTML <ul> tag defines an unordered (bulleted) list. An unordered list starts with the <ul> tag.
🌐
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:

  1. Germany

  2. France

  3. 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.

🌐
Uark
agricultural-education-communications-and-technology.uark.edu › _resources › forms › mobile-classroom-web-design › 2._HTML_Code_List.pdf pdf
HTML CODE LIST
HTML CODE LIST · Name ________________________________________________________________________ <blockquote> Defines a section that is quoted from another source · <body> Defines the document's body · <br> Defines a single line break · <button> Defines a clickable button ·
🌐
Stanford
web.stanford.edu › group › csp › cs21 › htmlcheatsheet.pdf pdf
HTML Cheatsheet page 1 of 2 Basic Tags
<code> </code> Used to define source code, usually monospace · <cite> </cite> Creates a citation, usually processed in italics · <address> </address> Creates address section, usually processed in italics ·
🌐
Semrush
semrush.com › blog › the ultimate html tags list + free checklist
The Ultimate HTML Tags List + Free Checklist
May 28, 2025 - Get a comprehensive HTML tags list + free checklist categorized by function to boost your site‘s SEO
🌐
Wikipedia
en.wikipedia.org › wiki › HTML
HTML - Wikipedia
5 days ago - HTML 4.0 was published as a W3C Recommendation. It offers three variations: Strict, in which deprecated elements are forbidden · Transitional, in which deprecated elements are allowed · Frameset, in which mostly only frame related elements are allowed. Initially code-named "Cougar", HTML 4.0 adopted many browser-specific element types and attributes, but also sought to phase out Netscape's visual markup features by marking them as deprecated in favor of style sheets.
🌐
CodeBrainer
codebrainer.com › home › basic html tags – top 10 tags
Basic HTML tags - Top 10 tags - CodeBrainer
July 10, 2024 - CodeBrainer will teach you how to write HTML.<br><br>If you will have trouble with remembering HTML tags, you should read our top 10 tags.<br>And use some of the examples there.<br><br><br>Your CodeBrainer · An element which is mostly used to group elements and to act as a template for new controls. The div HTML tag is an element you will use to divide a significant part of an HTML document from other parts. For examplle, let’s say you have a list of products on your web page, you will use a div for each product.
🌐
W3Schools
w3schools.com › html › html_computercode_elements.asp
HTML Computer Code Elements
HTML Tag List HTML Attributes HTML Global Attributes HTML Browser Support HTML Events HTML Colors HTML Canvas HTML Audio/Video HTML Doctypes HTML Character Sets HTML URL Encode HTML Lang Codes HTTP Messages HTTP Methods PX to EM Converter Keyboard Shortcuts
🌐
PW Skills
pwskills.com › blog › web development › list of all html tags/codes you’ll find as a web developer!
List Of All HTML Tags/Codes You’ll Find As A Web Developer!
October 30, 2025 - HTML Tags List with Examples provides a practical reference to common tags like <p> for paragraphs, <a> for links, <img> for images, and <ul> for lists—each paired with sample code snippets to illustrate how they’re used in real HTML documents.