-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav.html
27 lines (27 loc) · 817 Bytes
/
nav.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
<nav class="nav">
<a href="http://crssietjhajjar.ac.in/">
<img class="logo-img" src="img/logo.png"></a>
</nav>
<div class="topnav" id="myTopnav">
<a href="http://crssietjhajjar.ac.in/">Home</a>
<a href="../index.html">E-Library</a>
<a href="../e-paper.html">E-paper</a>
<a href="../notes.html">Notes</a>
<a href="../papers.html">Previous Year Papers</a>
<a href="../e-magazine.html">E-Magazine</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</a>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>