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 Horizontal Navigation Menu

A horizontal navigation menu, often referred to as a "navigation bar," displays links in a row.

HTML Code for Horizontal Navigation Menu:

<nav id="nav_menu">
    <ul>
        <li><a href="index.html">Home</a></li>
        <li><a href="tickets.html">Get Tickets</a></li>
        <li><a href="members.html" class="current">Become a Member</a></li>
        <li><a href="about_...