-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavigation2.html
56 lines (50 loc) · 1.14 KB
/
navigation2.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<head>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
</style>
<script type="text/javascript" src="http://gc.kis.v2.scr.kaspersky-labs.com/0234A8D8-C5A8-0647-8435-A438C209F55C/main.js" charset="UTF-8"></script></head>
<body>
<div class="topnav" id="myTopnav">
<a href='index.php'>Home</a>
<a href='myprofile.php'>My Profile</a>
<a href='newitem.php'>Add New</a>
<a href='contact.html'>Contact Us</a>
<a href='logout.php'>Logout</a>
<!-- <a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="myFunction()">☰</a> -->
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
<html>