-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5Sidebar.html
More file actions
49 lines (41 loc) · 1.2 KB
/
Copy path5Sidebar.html
File metadata and controls
49 lines (41 loc) · 1.2 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
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>5Sidebar</title>
<link rel="stylesheet" href="CSS/5Sidebar.css">
</head>
<body>
<!-- OverLay -->
<div class="overlay" id="overlay"> i am overlay </div>
<!-- Side Bar -->
<div class="sidebar" id="sidebar">
<div class="sidebar-header">
<span class="logo"> Dev Smartz </span>
<button class="closebtn" id="closebtn"> × </button>
</div>
<ul class="sidebarLinks">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<!-- Nav Bar -->
<nav>
<div class="logo"> Smartz </div>
<button class="openBtn" id="openBtn">
<span></span>
<span></span>
<span></span>
</button>
</nav>
<!-- Page Content -->
<div class="content">
<h1> Welcome to Smartz website </h1>
<p> Check out the hamburger menu </p>
</div>
<script src="JS/5Sidebar.js"></script>
</body>
</html>