-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
34 lines (31 loc) · 1.28 KB
/
header.html
File metadata and controls
34 lines (31 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<header>
<div class="container">
<div class="logo">
<a href="index.html">
<img src="assets/logoFlat.webp" alt="LaxMap Logo" class="desktop-logo">
</a> </div>
<nav class="desktop-nav">
<ul>
<li><a href="view-events.html">View Events</a></li>
<li><a href="add-event.html">Add New Event</a></li>
<li><a href="edit-event.html">Edit Event</a></li>
<li><a href="manage-featured.html">Manage Featured</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</nav>
<button class="hamburger-menu" aria-label="Toggle navigation">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</button>
<nav class="mobile-nav">
<ul>
<li><a href="index.html">View Events</a></li>
<li><a href="add-event.html">Add New Event</a></li>
<li><a href="edit-event.html">Edit Event</a></li>
<li><a href="manage-featured.html">Manage Featured</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</nav>
</div>
</header>