-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (36 loc) · 1.13 KB
/
index.html
File metadata and controls
51 lines (36 loc) · 1.13 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
50
51
<!DOCTYPE html>
<head>
<title>Slide Down FullScreen Nav</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div id="myNav" class="overlay">
<a href="javascript:void(0)"
class = "closebtn"
onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="#">Home</a>
<a href="#">Portfolio</a>
<a href="#">About Us</a>
<a href="#">Contact Us</a>
</div>
</div>
<h2>ASSASSIN GHOST</h2>
<span id="hamburger" style="font-size:30px;cursor:pointer"
onclick="openNav()"> ☰ </span>
<div class="body-content">
<h1>Slide Down Nav</h1>
<p>This is a responsive Slide Down Nav designed by Assassin Ghost</p>
</div>
<script>
function openNav(){
document.getElementById("myNav")
.style.height="100%";
}
function closeNav(){
document.getElementById("myNav")
.style.height="0%";
}
</script>
</body>
</html>