-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (90 loc) · 3.95 KB
/
index.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>HOSTEL MANAGEMENT SYSTEM</title>
</head>
<body>
<nav class="navbar background h-nav-resp">
<ul class="nav-list v-class-resp">
<div class="logo"><img src="img/logo_new.jpeg" alt="logo"></div>
<li><a href="#Home">Home</a></li>
<li><a href="#About">About</a></li>
<li><a href="#Contact Us">Contact Us</a></li>
<div class="dropdown">
<button class="dropbtn">Facilities
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="rooms.html">Rooms</a>
<a href="mess.html">Mess</a>
<a href="#">Sports</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Login/Signup
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="login1.html">Warden</a>
<a href="login2.html">Student</a>
<a href="login3.html">Mess Member</a>
</div>
</div>
</ul>
<div class="burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
<section id="Home" class="background firstSection">
<div class="box-main">
<div class="firstHalf">
<div class="box-big">
<p class="text-big">HOSTEL MANAGEMENT SYSTEM</p>
<p class="text-small">STUDENT HOUSING – Home Away From Home</p>
</div>
</div>
<div class="secondHalf">
<img src="img/images (1).jpg" alt="hostelImage">
</div>
</div>
</section>
<section class="secRight" id="About">
<div class="paras">
<p class="sectionTag text-big">About The Hostel</p>
<p class="sectionSubTag text-small">Each hostel building has two floors. There are different hostels for boys as well as girls. Each floor has 25 rooms and 4 washrooms.
Ground floor contains two seater rooms and second floor contains 4 seater rooms. There is a big playground in the middle of the hostel.
Various sports facilities are also provided like cricket, football, badminton, volleyball, chess, carrom, etc in the hostel. There is a big common hall in the hostel for various activities.
Mess facility is also included in the hostels.
</p>
</div>
<div class="thumbnail">
<img src="img/images (3).jpg" alt="hostel" class="imgfluid">
</div>
</section>
<section class="contact" id="Contact Us">
<h2 class="text-center">Contact Us</h2>
<form>
<div class="form">
<input class="form-input" type="text" name="name" id="name" placeholder="Enter Your name" required>
<input class="form-input" type="text" name="phone" placeholder="Enter Your phone" required>
<input class="form-input" type="email" name="email" placeholder="Enter Your email" required>
<textarea class="form-input" name="text" id="text" cols="30" rows="5"
placeholder="Elaborate your concern" required></textarea>
<button class="btn btn-dark"><a href="contact.html"> Submit</a></button>
</div>
</form>
</section>
<footer class="background">
<p class="text-footer">
copyright © 2026 www.apnahostel.com - All rights reserved
</p>
</footer>
<script src="js/resp.js"></script>
</body>
</html>