-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
54 lines (48 loc) · 1.4 KB
/
about.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Live Compalin System</title>
<script>
function show() {
var x = document.getElementById("nav");
if (x.className === "wrap") {
x.className += " unwrap";
} else {
x.className = "wrap";
}
}
</script>
<link rel="stylesheet" href="css/index.css">
<script>
function show() {
var x = document.getElementById("nav");
if (x.className === "wrap") {
x.className += " unwrap";
} else {
x.className = "wrap";
}
}
</script>
</head>
<body>
<header class="header">
<a href="index.php" class="logo">Welcome</a>
<img src="images/logo.png" width="30px" height="30px" onclick="show()" />
<nav id='nav' class="wrap">
<div class="header-right">
<a href="user/login.php">User Login</a>
<a href="government/gov.php">Government Login</a>
<a href="contactus.php">Contact Us</a>
<a href="about.php">About Us</a>
<a href="admin/admin.php">Admin</a>
</div>
</nav>
</header>
<div class="aboutus">
<h1>Welcome to Complain Cell</h1>
<h1>Thanks For Visiting this site</h1>
</div>
</body>
</html>