Most people think of lists as a visual thing. They think about bullet points in a PowerPoint presentation, or a grocery list with an arrow in front of each item.

Yes, their visual representation is a large part of their importance. But this is a course about HTML, so I’m mainly interested in their meaning.

What is a list?

A list represents a group of similar items that belong to the same category

You guessed it: any time you want to list multiple pieces of content that belong together, use a list. (You can change the visuals later, to make it look like … not-a-list, if you want.)

To test if something needs to be list, try to “introduce” the content. If you can write one sentence (a question, a statement, a topic) and respond to it with all these items, they should be a list.

For example, an introduction could be “5 reasons to learn HTML”. Those 5 reasons are all an answer to the same question, so they should be a list.

If you look at the source code of well-programmed websites, you’ll see that many elements are a list. Even if they don’t look like one. The most common application is navigation. The menus at the top of a website are usually a list in HTML. Because all the links belong together and perform the same function: “how do I navigate to all parts of this website?”

Three types of lists

There are three types of lists, each with their own tag(s).

  • Unordered
  • Ordered
  • Named (or Labeled)
Remark

See what I did there? I introduced something, “the three types of lists”, and then gave the answer with a list ;)

All of them need two steps.

  • A tag to indicate “hey, here comes a list”
  • A tag for each individual item inside the list

Unordered

This groups items without order or hierarchy. Each list item is equally important. The lists above (in this chapter) are unordered, with their default visual being a bullet (or disc) in front of each item.

To create this list, use the <ul> ( = unordered list) tag. For each individual item, use <li> ( = list item).

Try adding or removing elements from the example below.

Ordered

As expected, this is for elements with a clear order. For example, a “top 10 most streamed songs”. Each song has a rank, so it gets a number in front.

To create such a list, use <ol> ( = ordered list). For each individual item, you still use <li>.

There is a way to change what appears in front of list items, or to start from a different number. However, that’s a visual thing! So I’m not even going to explain it, because HTML should only add meaning. If you want that, do it through CSS.

Named

In HTML, this is called a description list. I think this is a terrible name, which is why I call it a labeled or named list. Using it for description is only one use case out of many.

The lists above are for lists with no relation, or lists with a numerical order. This list is for the third type of relationship: items alternate between a name or label, and the content that belongs to it.

It’s comparable to the head and body. Each item has some content, and a label that says something about that content.

To start one, use <dl> ( = description list). Labels use the tag <dt> ( = description term), content uses the tag <dd> ( = description … description?)

This tag is rare. If it fits your content, it’s great. But most of the time, you’re better off adding elements inside a regular <li> tag. It provides a little more flexibility when adding the visuals later.

Nesting

As with everything in HTML, lists can be nested. It’s easy to make a silly mistake here, however. (Which I—erm—certainly didn’t do repeatedly, what are you talking about?)

Remember the rule about nesting. The inner element must be inside the outer element, before it’s closing tag.

As such, to nest a list, add another list inside the <li> tag.

Navigation is a very common element within any document. (Webpages, books, papers, …)

As expected, it has its own tag: <nav>. Within, add a list, where each item is one possible page to which you can navigate.

Example

If you’ve ever read an ebook with a Table of Contents, this is certainly how they did it. A navigation tag, with nested lists inside, probably ordered.

This structure is also well understood by search engines and screen readers. If you do it like this, they will understand the content of your web page much better. (Google might even display extra snippets to other pages when people search for your website!)

There are situations in which your navigation is just a single link, maybe two. Even then, wrap it in a list, and a <nav> tag. It’s still a block on the webpage with one or more pieces of content meant to navigate.

This is not the same as links. Those are inline elements and have their own tag, which you’ll learn soon. (I’m delaying them on purpose, as you need to understand attributes to use them. I, however, didn’t want to overwhelm you by explaining new ideas too soon.)

Continue with this course
Support me and this website!

Want to support me?

Buy one of my projects. You get something nice, I get something nice.

Donate through a popular platform using the link below.

Simply giving feedback or spreading the word is also worth a lot.