-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
37 lines (37 loc) · 1.03 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
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<script defer src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script
defer
src="https://kit.fontawesome.com/585143586a.js"
crossorigin="anonymous"
></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="style.css" />
<script src="index.js" defer></script>
<title>Responsive Nav</title>
</head>
<body>
<nav>
<div id="NavContentWrapper">
<h2>The Nav</h2>
<ul id="NavLink">
<li>Home</li>
<li>About</li>
<li>Blog</li>
<li>Plans</li>
<li>Support</li>
</ul>
<div id="Burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</div>
</nav>
</body>
</html>