-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.3 KB
/
Copy pathindex.html
File metadata and controls
38 lines (34 loc) · 1.3 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
38
<!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" />
<title>Responsive Burger Navigation Study</title>
<meta name="Responsive Burger Navigation Study" content="a handy study of animated navigation" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="index.css" />
<script src="index.js" defer></script>
</head>
<body>
<nav>
<a href="/" class="brand-logo">
<img class="logo-resize" src="" alt="">
<div class="brand-logo-name">CSS Nav Study</div>
</a>
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<ul class="nav-links">
<li><a class="link" href="#">Discover</a></li>
<li><a class="link" href="#">Services</a></li>
<li><a class="link" href="#">Contact</a></li>
</ul>
</nav>
<section class="landing">
<h1>Welcome to the Burger Navigation Study!</h1>
</section>
</body>
</html>