-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
35 lines (30 loc) · 1.17 KB
/
Contact.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
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href=Home_Page>Home Page</a>
<a href="about_me.html">about me</a>
<a href="NOT AVALAVLE">(PAGE NOT AVALABLE)</a>
<a href="Contact">Contact</a>
</div>
<!-- Use any element to open the sidenav -->
<span onclick="openNav()"><img src="open.png" alt="Image description" /></span>
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
document.getElementById("main").style.marginLeft = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
document.getElementById("main").style.marginLeft= "0";
}
</script>
<!-- Add all page content inside this div if you want the side nav to push page content to the right (not used if you only want the sidenav to sit on top of the page -->
<div id="main">
</div>
<script type="text/javascript" src="https://form.jotform.com/jsform/80744415986164"></script>
</html>