-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.inc
33 lines (30 loc) · 909 Bytes
/
nav.inc
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
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
<script>
function toggleMenu(arg){
if(document.getElementById(arg).style.display=='block'){
document.getElementById(arg).style.display='none';
}
else{
document.getElementById(arg).style.display='block';
}
}
</script>
<body>
<div id="navbar-back">
<div id="navbar">
<a class="nav" href="index.php"><img id="logo" alt="MemeGen" src="memegen2.png"></a>
<div class="nav menu-wrap" id="nav-make"></div>
<div class="menu">
<ul>
<li><a href="contact.html">Contact</a></li>
<li onclick="toggleMenu('submenu1');"><a href="#">Login</a>
<ul class="submenu" id="submenu1">
<li><a href="login.php">Login</a></li>
<li><a href="signup.php">Sign Up</a></li>
<li><a href="profile.html">Profile</a></li>
</ul>
</ul>
<div>
</div>
<div>
<body>