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 Two-Tier Navigation Menu
A two-tier menu includes submenus that drop down when the user hovers over a primary menu item.
HTML Code for Two-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>
<li><a...