-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·53 lines (45 loc) · 1.34 KB
/
index.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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>Off-canvas menu</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/styles.css">
<script src="js/prefixfree.js"></script>
</head>
<body>
<div class="site-container">
<button class="menu-button jsOffsiteToggle">
<svg width="30" height="16" viewBox="0 0 30 16">
<path d="M0 0h30v2H0zm0 7h30v2H0zm0 7h30v2H0z" fill="currentColor" fill-rule="evenodd" />
</svg>
<span class="menu-button__text">Menu</span>
</button>
<h1>Click on the button above to find out what lies on the left! </h1>
<p>I promise you, you’ll be in for a big surprise! 😺</p>
</div>
<div class="offsite-container">
<nav class="nav">
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Work</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</nav>
</div>
<script src="js/main.js"></script>
</body>
</html>