Lists are very useful in HTML, and are also used to build navigation menus. Learn how in this article…

Before we begin, you may be wondering why navigation is included in an article about lists. As I said above, lists are used to build navigation menus - but why? The reason is because it is the globally accepted way to create navigation. This is means that it will help screen readers, web scanners and Google identify it as the navigation for your site. This is part of a thing called Search Engine Optimization (SEO), which I will go into in a later article.

In this article, I will start with what lists are and how to make them, then go into how they can be used to create navigation. Let’s get going!

Types of lists

There are three types of lists in HTML:

  • Ordered lists
  • Unordered lists
  • Definition lists

(see what I did there? I used a list 😜) Let’s go into what each one is for and how to code them…

Ordered lists

Ordered lists are lists with numbers, and look like so:

  1. Item
  2. Another item
  3. A third item

Here is the syntax for an ordered list:

<ol>
    <li>Item</li>
    <li>Another item</li>
    <li>A third item</li>
</ol>

Let’s go through what that means: The <ol> tag stands for ordered list, and is the actual list element. Each item in the list is made using a <li> element, which stands for list item.

Unordered lists

Unordered lists are very similar to ordered lists, except that they have bullet points instead of numbers:

  • Item
  • Another item
  • A third item

The syntax for an unordered list is very similar to the syntax for an ordered list:

<ul>
    <li>Item</li>
    <li>Another item</li>
    <li>A third item</li>
</ul>

You still use <li>s for the list items, and the only difference is that <ol> is replaced with <ul> (unordered list).

Definition lists

Definition lists are probably the least common list used in HTML, and also the most complicated. Definition lists are used sort of like you would find in a dictionary, with terms and definitions of those terms. Here is an example:

Ordered lists
Lists with numbers
Unordered lists
Lists with bullet points
Definition lists
Lists used to define things

The syntax for definition lists is a bit more complicated, so I will explain first. First of all, a definition list is made using the <dl> tag, similar to ordered and unordered lists:

<dl>
    
</dl>

But what goes inside? Basically, a definition list is made up of term/definition pairs. The term and the definition each have their own element. The element for the definition term is <dt>, and the element for the definition description (definition of the term) is <dd>. Here is a simple term/definition pair in a list:

<dl>
    <dt>Term</dt>
    <dd>Definition</dd>
</dl>

Using the information I’ve given you, try and work out what the code for the example list from above would be:

<dl>
    <dt>Ordered lists</dt>
    <dd>Lists with numbers</dd>
    <dt>Unordered lists</dt>
    <dd>Lists with bullet points</dd>
    <dt>Definition lists</dt>
    <dd>Lists used to define things</dd>
</dl>

There we go! Now you know all three types of lists in HTML!

What is navigation?

Navigation is the set of links that you click on to get to other parts of a site. For example, here is the navigation on my site:
My navigation bar with the Code The Web logo, a Home link and a Tags link
And here is an example from another site:
A navigation bar with a logo, links to pages, links to social media and a download now button

As I said earlier, navigation should be created with lists, for the purpose of Search Engine Optimization and general accessibility. Because the whole point of creating navigation with lists is for a global standard, there is a specific syntax that should be used to create them:

<nav>
    <ul>
        <li><a href="/">Home</a></li>
        <li><a href="/about">About</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
</nav>

Basically, a navigation item should be created with the following structure:

nav > ul > li > a > your-text

Note that the ordered list is put in a <nav> element. This is the semantic tag for navigation on a page.

Try and create your own navigation with the following two items:

  • Home (link to https://codetheweb.blog/)
  • Newsletter (link to https://codetheweb.blog/newsletter)

See if you got it right below:

<nav>
    <ul>
        <li><a href="https://codetheweb.blog/">Home</a></li>
        <li><a href="https://codetheweb.blog/newsletter">Newsletter</a></li>
    </ul>
</nav>

Note that the default styling for the navigation code above looks really bad - in a later article, I will show you how to make a navigation bar that actually looks good, all while keeping the exact same HTML.

Conclusion

Woo! Now you know all three types of lists in HTML, as well as all about how to create navigation on a page.

If you enjoyed this article, don’t forget to share it so that more people will get to read it. As always, if you have any questions, feedback or just want to say hi then do so in the comments below. And if you want to stay up to date and have more awesome articles delivered to your inbox (once a week-ish), then don’t forget to subscribe to the newsletter.

Have fun, and I’ll see you all next week where I’ll be writing my first CSS tutorial.

P.S. - today is exactly one month since I wrote my first ever blog post!

Your FREE guide to learning HTML! 🎁

Get it when you sign up for the weekly newsletter:

Low-quality preview of the Guide to Learning HTML