Sequence NODE_108
Easy

Create a Navigation Menu with Anchor Links

HTML
Technical Specification

Build a top navigation bar that scrolls to different sections of the same page using anchor links.

Input/Output Samples
Input:Sections: Home, About, Services, Contact
Output:Nav with links that jump to each section
Optimal Logic Path
Wrap your menu in <nav> with <a href='#about'>About</a>. Each target section has matching id attributes.
Architectural Deep-Dive
Anchor-based navigation is the base of single-page layouts and helps users quickly jump to content.