-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathnavbar.html
More file actions
32 lines (29 loc) · 1.1 KB
/
navbar.html
File metadata and controls
32 lines (29 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="navstyle.css">
<link rel="stylesheet" href="css/variables.css">
</head>
<body>
<nav class="navbar" aria-label="Main Navigation">
<div class="navbar__container">
<a href="#" class="navbar__brand">MySite</a>
<!-- Toggle checkbox for mobile -->
<input type="checkbox" id="navbar-toggle" class="navbar__toggle-checkbox" />
<label for="navbar-toggle" class="navbar__toggle-label">
<span class="navbar__toggle-icon"></span>
</label>
<ul class="navbar__menu">
<li class="navbar__item"><a href="#home" class="navbar__link">Home</a></li>
<li class="navbar__item"><a href="#about" class="navbar__link">About</a></li>
<li class="navbar__item"><a href="#services" class="navbar__link">Services</a></li>
<li class="navbar__item"><a href="#contact" class="navbar__link">Contact</a></li>
</ul>
</div>
</nav>
</body>
</html>