-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathjquery-nav.html
More file actions
29 lines (20 loc) · 790 Bytes
/
jquery-nav.html
File metadata and controls
29 lines (20 loc) · 790 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="jquery-nav.css">
</head>
<body>
<img src="images/icon-burger-menu.svg" alt="Mobile Menu Icon" style="width: 40px;" class="burgermenu">
<nav class="mobile-nav">
<a href="#">About</a>
<a href="#">Pricing</a>
<a href="#">Contact</a>
</nav>
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="crossorigin="anonymous"></script>
<script src="jquery-nav.js"></script>
</body>
</html>