Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 2: HTML Essentials: Elements and Lists!

Instruction

How to Create a Three-Tier Navigation Menu

A three-tier menu includes another level of submenus that appears when hovering over a submenu item.

HTML Code for Three-Tier Navigation Menu:

<nav id="nav_menu">
    <ul>
        <li><a href="index.html">Home</a></li>
        <li><a href="speakers.html">Speakers</a>
            <ul>
                <li><a href="brancaccio.html">David Brancaccio</a></li>
               ...