-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
28 lines (28 loc) · 837 Bytes
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hostel Grievance Management System</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Hostel Grievance Management System</h1>
</header>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="index.html">Submit a Grievance</a></li>
<li><a href="view_grievences.html">View Grievances</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<main>
<h2>Welcome to Hostel Grievance Management System</h2>
<p>This system provides a platform for hostel residents to submit their grievances online.</p>
</main>
<footer>
<p>© 2023 Hostel Grievance Management System</p>
</footer>
</body>
</html>