For working professionals
For fresh graduates
More
2. HTML Basics
3. HTML Syntax
9. HTML Head
10. HTML Title
11. HTML Styles
12. HTML Paragraphs
13. HTML Symbols
14. HTML Emojis
15. HTML Formatting
16. HTML Entities
17. HTML Audio
18. HTML Images
19. HTML Lists
20. HTML Links
21. SVG in HTML
22. HTML Forms
23. HTML Video
24. HTML Canvas
25. Adjacency Lists
26. HTML Input Types
27. HTML Tables
31. HTML Layout
33. HTML Div
37. HTML Iframes
40. HTML Code
41. HTML Colors
42. HTML CSS
43. HTML Editors
44. HTML Examples
45. Class in HTML
46. HTML Exercises
47. HTML ID
49. HTML Table Style
50. HTML Script
Suppose you are writing an article titled “Top 5 Ways to Beat the Heat This Summer”. The first impulse of readers will be to look for the 5 points that will deliver the information.
We often present information in the form of a listicle for ease of navigation and better visibility. I personally find it easier to go through information presented in the form of points than reading text-heavy paragraphs from where you have to extract important information.
How do we structure information so that it is visually appealing and easy to find and read? The HTML lists feature makes this possible.
HTML lists are a popular tool in web development. The basic HTML tag list allows developers to present information concisely.
Let us see in this tutorial how we can use the HTML lists feature to present information in the form of lists.
There are three types of HTML program lists:
Let us take, for example, a website listing name suggestions for boys starting with K. This does not require a proper order and can be represented using an unordered HTML list syntax.
Here, we can use HTML ordered lists. The items mentioned in the form of lists will be numbered in an order by default.
The next section provides the HTML syntax list that you need to use for each of these.
HTML uses different tags to indicate the beginning and end of an HTML element in an HTML document. These tags help to specify how the content has to be displayed.
Have a look at this HTML notepad codes list.
<li>: This tag defines a list, but does not specify if the list is ordered or unordered.
<ol>: This tag defines an ordered list.
<ul>: This tag defines an unordered list.
<dl>: This tag defines a description list.
<dt>: This tag defines a term in the description list.
<dd>: This tag defines the description of a term in the description list.
Using HTML lists is pretty simple. Let me provide a step-by-step guide for the same:
Step 1: Choose the HTML list menu you want to use. Based on the elements that you are willing to list, figure out whether you need to use an ordered, unordered, or definition list.
Step 2: Add the relevant tag. Use <ol> for ordered lists, <ul> for unordered lists, and <dl> for definition lists.
Step 3: Add the items. Enclose them within the <li> tag. The items will be represented as a separate entry in the list.
Once you get the outcome, you will be able to customize the appearance of your HTML code list with the help of CSS, i.e., you can change the indentation, numbering style, bullet points, and so on.
When you are writing a grocery list, the items do not need to follow a specific sequence. HTML unordered lists are used to present items that do not have to mandatorily follow a sequence.
These lists are displayed with bullets, which ensures the distinctiveness of the items.
Let me state an HTML list example that will further clarify your concept.
Code:
<ul>
<li>Apples</li>
<li>Bread</li>
<li>Eggs</li>
<li>Milk</li>
<li>Cheese</li>
</ul>
This HTML command list code will display the result:
Hope this was easy to understand!
As the name suggests, HTML ordered list syntax is used when you want to present your items in a specific order.
Let us assume that we are listing down a recipe. Can you pour oil before heating the pan? Certainly not! In this case, it is essential to list the steps in an order.
An example in support of this is mentioned below. Suppose you are trying to bake a cookie. Here’s how you can code to ensure that the steps are displayed in the form of an ordered list.
Let us understand this HTML tag list with example.
Code:
<ol>
<li>Preheat the oven to 350°F (175°C).</li>
<li>In a large mixing bowl, cream together the butter, white sugar, and brown sugar until smooth.</li>
<li>Beat in the eggs, one at a time, then stir in the vanilla extract.</li>
<li>Dissolve baking soda in hot water. Add to batter along with salt.</li>
<li>Stir in flour, chocolate chips, and nuts (if desired).</li>
<li>Drop by large spoonfuls onto ungreased pans.</li>
<li>Bake for about 10 minutes in the preheated oven, or until the edges are nicely browned.</li>
<li>Cool on wire racks.</li>
</ol>
This code will produce the result in this manner:
Readers will automatically know in what order they should proceed to bake a cookie.
To specify the starting point of the numbering you need in your ordered list, you have to use the start attribute for the <ol> tag.
For example, if you write <ol type = “1” start = “4”>, then the numerals will start with 4. If you write <ol type = “A“ start = “4”>, then the letters will start with D.
The numbering style can be customized with the help of CSS.
Therefore, whether you're listing the top 10 movies in 2023 or ranking students based on their scores, HTML ordered lists are here to rescue you!
This kind of HTML list is used to present items along with their corresponding definitions. They have a list of terms that are enclosed within the tag <dt> (definition term). The associated definitions are enclosed in the tag <dd> (definition description).
Let us take, for example, the definition of three fruits: apple, banana, and orange. Here’s how to do it.
Code:
<dl>
<dt>Apple</dt>
<dd>A round fruit with red or green skin and a crisp, white flesh.</dd
<dt>Banana</dt>
<dd>A long curved fruit with a soft, yellow skin and sweet, creamy flesh.</dd
<dt>Orange</dt>
<dd>A citrus fruit with a tough, orange skin and juicy, segmented flesh.</dd>
</dl>
This code will display the following result:
Once you master the art of tactfully using HTML lists, you can enhance the visual aesthetics of your web page.
I hope this tutorial has given you a basic idea about the basic HTML command list and how to start using HTML lists in web development projects. If you are looking forward to knowing more, you can enroll in a full-stack web development course that will teach you all the important aspects of both front-end and back-end development and instill a holistic approach.
You can look for many such courses on upGrad, designed especially for working professionals who are looking forward to taking the next big leap in their careers.
Hope you find the best course that aligns with your interests and can fetch you the most lucrative opportunities. Happy coding!
1. What are HTML lists?
HTML lists help developers group different types of related items in an organized, listicle manner. They can either be ordered, unordered, or in the form of a description.
2. What are the three 3 types of list elements used in HTML?
There are three types of HTML lists:
3. How many lists does HTML have?
There are three HTML list types- ordered, unordered, and description.
4. Why use lists in HTML?
HTML lists help to present information in the form of pointers, making information easily accessible to the users.
5. How to insert a list in HTML?
There are different tags that are used to create HTML list. At first, you will have to use the <li> tag, and then specify whether you want to insert ordered, unordered, or description lists using the <ol>, <ul> and <dl> tags, respectively.
6. What is an ordered list in HTML?
An ordered list is one in which the elements to be contained in the list are written in a given sequence.
7. What is a description list?
A description list is one in which the elements are first named and then described.
8. What is an unordered list?
Unlike an ordered list, an unordered list presents the HTML element list, but they do not follow a particular sequence.
Author
Talk to our experts. We are available 7 days a week, 9 AM to 12 AM (midnight)
Indian Nationals
1800 210 2020
Foreign Nationals
+918045604032
1.The above statistics depend on various factors and individual results may vary. Past performance is no guarantee of future results.
2.The student assumes full responsibility for all expenses associated with visas, travel, & related costs. upGrad does not provide any a.