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

A vertical navigation menu lists links vertically in an unordered list (<ul>), where each list item (<li>) contains an anchor tag (<a>). HTML Code for Vertical Navigation Menu: <nav id="nav_list"> <ul> <li><a href="index.html">Home</a></li> <li><a href="tickets.html">Get Tickets</a></li> ...