-
Notifications
You must be signed in to change notification settings - Fork 0
/
rooms.php
209 lines (197 loc) · 7.85 KB
/
rooms.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!DOCTYPE html>
<html>
<head>
<title>Hotel Booking Website</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet">
<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=Nunito:ital,wght@1,200&family=Poppins:ital,wght@0,400;0,500;1,400&display=swap" rel="stylesheet">
<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=Merienda:wght@400;700&family=Nunito:ital,wght@1,200&family=Poppins:ital,wght@0,400;0,500;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css"
/>
<link rel="stylesheet" type="text/css" href="css/common.css">
<script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
</head>
<body>
<?php require('inc/header.php'); ?>
<div class="my-5 px-4">
<h2 class="fw-bold h-font text-center">Crystal Hotel</h2>
<div class="h-line bg-dark"></div>
</div>
<div class="container">
<div class="col-lg-12 col-md-12 px-4">
<div class="card mb-4 border-0 shadow">
<div class="row g-0 p-3 align-items-center">
<div class="col-md-5 mb-lg-0 mb-md-0 mb-3">
<img src="images/rooms/1.jpg" class="img-fluid rounded">
</div>
<div class="col-md-5 px-lg-3 px-md-3 px-0">
<h5 class="mb-3">Simple Room Name</h5>
<div class="features mb-4">
<h6 class="mb-1">Features</h6>
<span class="badge rounded-pill bg-light text-dark text-wrap">
3 Rooms
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
1 Bathroom
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
1 Balcony
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
3 Sofa
</span>
</div>
<div class="Facilities mb-3">
<h6 class="mb-1">Facilities</h6>
<span class="badge rounded-pill bg-light text-dark text-wrap">
Wifi
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
Television
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
AC
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
Room Heater
</span>
</div>
<div class="guests">
<h6 class="mb-1">Guests</h6>
<span class="badge rounded-pill bg-light text-dark text-wrap">
6 Adults
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
7 Children
</span>
</div>
</div>
<div class="col-md-2 mt-lg-0 mt-md-0 mt-4 text-center">
<h6 class="mb-4">$1000 per night </h6>
<a href="inc/book.php" class="btn btn-sm w-100 text-white custom-bg shadow-none mb-2">Book Now</a>
<a href="#" class="btn btn-sm w-100 btn-outline-dark shadow-none">More details</a>
</div>
</div>
</div>
<div class="card mb-4 border-0 shadow">
<div class="row g-0 p-3 align-items-center">
<div class="col-md-5 mb-lg-0 mb-md-0 mb-3">
<img src="images/rooms/2.png" class="img-fluid rounded">
</div>
<div class="col-md-5 px-lg-3 px-md-3 px-0">
<h5 class="mb-3">Simple Room Name</h5>
<div class="features mb-4">
<h6 class="mb-1">Features</h6>
<span class="badge rounded-pill bg-light text-dark text-wrap">
2 Rooms
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
1 Bathroom
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
1 Balcony
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
3 Sofa
</span>
</div>
<div class="Facilities mb-3">
<h6 class="mb-1">Facilities</h6>
<span class="badge rounded-pill bg-light text-dark text-wrap">
Wifi
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
Television
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
AC
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
Room Heater
</span>
</div>
<div class="guests">
<h6 class="mb-1">Guests</h6>
<span class="badge rounded-pill bg-light text-dark text-wrap">
3 Adults
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
2 Children
</span>
</div>
</div>
<div class="col-md-2 text-center">
<h6 class="mb-4">$500 per night </h6>
<a href="inc/book.php" class="btn btn-sm w-100 text-white custom-bg shadow-none mb-2">Book Now</a>
<a href="#" class="btn btn-sm w-100 btn-outline-dark shadow-none">More details</a>
</div>
</div>
</div>
<div class="card mb-4 border-0 shadow">
<div class="row g-0 p-3 align-items-center">
<div class="col-md-5 mb-lg-0 mb-md-0 mb-3">
<img src="images/rooms/3.png" class="img-fluid rounded">
</div>
<div class="col-md-5 px-lg-3 px-md-3 px-0">
<h5 class="mb-3">Simple Room Name</h5>
<div class="features mb-4">
<h6 class="mb-1">Features</h6>
<span class="badge rounded-pill bg-light text-dark text-wrap">
2 Rooms
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
1 Bathroom
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
1 Balcony
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
3 Sofa
</span>
</div>
<div class="Facilities mb-3">
<h6 class="mb-1">Facilities</h6>
<span class="badge rounded-pill bg-light text-dark text-wrap">
Wifi
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
Television
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
AC
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
Room Heater
</span>
</div>
<div class="guests">
<h6 class="mb-1">Guests</h6>
<span class="badge rounded-pill bg-light text-dark text-wrap">
4 Adults
</span>
<span class="badge rounded-pill bg-light text-dark text-wrap">
5 Children
</span>
</div>
</div>
<div class="col-md-2 text-center">
<h6 class="mb-4">$600 per night </h6>
<a href="inc/book.php" class="btn btn-sm w-100 text-white custom-bg shadow-none mb-2">Book Now</a>
<a href="#" class="btn btn-sm w-100 btn-outline-dark shadow-none">More details</a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php require('inc/footer.php'); ?>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>