-
Notifications
You must be signed in to change notification settings - Fork 0
/
room.php
168 lines (123 loc) · 7.3 KB
/
room.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Rooms | HMS </title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/tempusdominus/css/tempusdominus-bootstrap-4.min.css" rel="stylesheet" />
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="./css/style.css" rel="stylesheet">
<link rel="stylesheet" href="./css/footer.css">
<link rel="stylesheet" href="./css/nav.css">
<link rel="stylesheet" href="./css/ftcustm.css">
</head>
<body>
<div class="container-xxl bg-white p-0">
<!-- Header Start -->
<?php include './partial/nav.php'; ?>
<!-- Header End -->
<!-- Page Header Start -->
<div class="container-fluid page-header p-0" style="background-image: url(./poster/rooms_bg.jpg);width:100%;">
<div class="container-fluid page-header-inner py-5">
<div class="container text-center pb-5">
<h1 class="display-3 text-white mb-3 animated slideInDown">Rooms</h1>
<nav aria-label="breadcrumb">
<ol class="breadcrumb justify-content-center text-uppercase">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item text-white active" aria-current="page">Rooms</li>
</ol>
</nav>
</div>
</div>
</div>
<!-- Page Header End -->
<!-- Video Start -->
<div class="container-xxl py-4 px-0 wow zoomIn" data-wow-delay="0.1s">
<div class="row g-0">
<div class="col-md-6">
<div class="video">
<img src="./poster/hostel.jpg" height="100%" width="100%" alt="hostel life">
<span></span>
</button>
</div>
</div>
<div class="col-md-6 bg-dark d-flex align-items-center">
<div class="p-5">
<h6 class="section-title text-start text-white text-uppercase mb-3">Explore our rooms</h6>
<h1 class="text-white mb-4">Rooms facilities</h1>
<ol class="text-white">
<li>Bed and Mattress:- Each room should have a bed with a comfortable mattress to ensure a good night's sleep.</li>
<li>Study Table and Chair:- A study table and chair are essential for students to study and do their homework.</li>
<li>Lighting:- Adequate lighting should be provided in each room for reading and studying.</li>
<li>Electrical Outlets:- Sufficient electrical outlets should be installed in each room to allow students to charge their devices and use electronics.</li>
<li>Ceiling Fan/Air Conditioning:- Depending on the climate, rooms should have either a ceiling fan or air conditioning to ensure comfort during hot weather.</li>
<li>Cleaning and Maintenance:- Regular cleaning and maintenance of rooms should be provided to ensure a hygienic and safe living environment.</li>
</ol>
</div>
</div>
</div>
</div>
<div class="container-xxl testimonial1 my-5 py-5 bg-dark wow zoomIn" data-wow-delay="0.1s">
<div class="container">
<div class="owl-carousel testimonial-carousel py-5">
<div class="testimonial-item position-relative border rounded overflow-hidden">
<p><img class="img-fluid flex-shrink-0 rounded" src="./poster/r-6.jpg" style="width: 100%; height: 250px;"></p>
</div>
<div class="testimonial-item position-relative border rounded overflow-hidden">
<p><img class="img-fluid flex-shrink-0 rounded" src="./poster/r-5.jpg" style="width: 100%; height: 250px;"></p>
</div>
<div class="testimonial-item position-relative border rounded overflow-hidden">
<p><img class="img-fluid flex-shrink-0 rounded" src="./poster/r-4.webp" style="width: 100%; height: 250px;"></p>
</div>
<div class="testimonial-item position-relative border rounded overflow-hidden">
<p><img class="img-fluid flex-shrink-0 rounded" src="./poster/r-3.webp" style="width: 100%; height: 250px;"></p>
</div>
<div class="testimonial-item position-relative border rounded overflow-hidden">
<p><img class="img-fluid flex-shrink-0 rounded" src="./poster/R-2.jpg" style="width: 100%; height: 250px;"></p>
</div>
<div class="testimonial-item position-relative border rounded overflow-hidden">
<p><img class="img-fluid flex-shrink-0 rounded" src="./poster/R-1.jpg" style="width: 100%; height: 250px;"></p>
</div>
</div>
</div>
</div>
<!-- Footer Start -->
<?php include './partial/footer.php'; ?>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-lg btn-primary btn-lg-square back-to-top"><i class="bi bi-arrow-up"></i></a>
</div>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/tempusdominus/js/moment.min.js"></script>
<script src="lib/tempusdominus/js/moment-timezone.min.js"></script>
<script src="lib/tempusdominus/js/tempusdominus-bootstrap-4.min.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>