Overview
The header component provides the main navigation structure for the Movie Nachos website. It includes a logo, navigation menu, and authentication buttons that adapt responsively for mobile devices.HTML Structure
The header is built with the following structure fromindex.html:16-41:
Key Components
Logo Container
Logo Container
The
.logo-container holds the site logo that links back to the homepage.Classes:logo-container- Container wrapperlogo- Logo image styling
Burger Menu
Burger Menu
Navigation Menu
Navigation Menu
Authentication Buttons
Authentication Buttons
JavaScript Functionality
The burger menu is controlled by JavaScript inscript.js:20-29:
The burger menu toggles the
show-menu class on the menu links and switches the icon between bars and times (X) for open/close states.Responsive Behavior
- Desktop: Full navigation menu and authentication buttons visible
- Mobile: Burger menu icon visible, navigation hidden until toggled
- Active State: Current page link has the
menu-link-activeclass
Usage Notes
The header uses Font Awesome 4.7.0 for icons. Ensure the Font Awesome CSS is loaded for proper icon display.