-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
34 lines (33 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Side bar menu</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<nav class="top-nav">
<svg height="20" width="20" onclick="openSideNav()">
<g fill="none" stroke="black" stroke-width="4">
<path stroke-linecap="round" d="M5 5 l215 0" />
<path stroke-linecap="round" d="M5 10 l215 0" />
<path stroke-linecap="round" d="M5 15 l215 0" />
</g>
</svg>
</nav>
<div id="side-bar" class="side-nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contacts</a></li>
<li><a href="#">Help</a></li>
</ul>
</div>
<div id="body-content">
Body Content here
</div>
<script src="work.js"></script>
</body>
</html>