-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
274 lines (254 loc) · 12.3 KB
/
index.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
<html>
<head>
<script src="https://use.fontawesome.com/e052114790.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<meta charset="UTF-8">
<title>Hotel Elephant Bay</title>
<style>
body{
font-family: montserrat alternates,sans-serif;
-webkit-font-smoothing: antialiased;
}
#home{
background:linear-gradient(0deg,rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('images/logBack.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
padding-bottom: 50px;
}
#home h1{
padding-top: 90px;
}
#home p{
font-size: 25px;
}
.glowbox{
background: rgba(255,255,255,0.3);
border:1px solid black;
opacity: 0.8;
padding-bottom: 15px;
padding-top: 10px;
}
.glowbox .card{
border: none;
}
#intro #rooms{
padding-bottom: 50px;
}
.glowboxpink{
border:10px solid pink;
border-radius: 4px;
padding: 15px;
display: grid;
grid-template-columns: auto 1fr auto;
}
.glowboxpink h2{
font-size: 50px;
font-weight: bolder;
color: black;
}
#rooms h1{
font-size: 50px;
font-weight: bolder;
}
#rooms #lux{
background:linear-gradient(0deg,rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('images/luxroom.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
#rooms #pool{
background:linear-gradient(0deg,rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url('images/hotelPool.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
#rooms button{
margin-top:20em;
margin-bottom: 4em;
border: 3px solid white;
color: white;
padding: 10px;
}
#cuslove h1{
font-size: 50px;
font-weight: bolder;
}
</style>
</head>
<body>
<?php
include './common/nav.php';
?>
<section class="pt-5 m-0" id="home">
<div class="col-sm-12 col-md-6 col-lg-4 offset-sm-0 offset-md-3 offset-lg-4">
<div class=" d-flex justify-content-center">
<div class="px-3 pt-3 pb-1">
<h1 class="text-white text-center display-4">
Hotel Elephant Bay
</h1>
<p class="text-white text-center">Enhancing Life around great food</p>
</div>
</div>
</div>
<div class='container d-flex flex-column justify-content-around glowbox'>
<h4 class="text-white display-5">Check Availability</h4>
<form>
<div class="row">
<div class="col-lg-3">
<div class="card">
<div class="card-body">
<h5 class="card-title">From</h5>
<input class="form-control" type="text" id="adultcnt" required="" placeholder="DD/MM/YYYY">
</div>
</div>
</div>
<div class="col-lg-3">
<div class="card">
<div class="card-body">
<h5 class="card-title">To</h5>
<input class="form-control" type="text" id="adultcnt" required="" placeholder="DD/MM/YYYY">
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<div class="card-body">
<div class="row">
<div class="col-lg-4">
<h5 class="card-title">Adult</h5>
<input class="form-control" type="text" id="adultcnt" required="" placeholder="0">
</div>
<div class="col-lg-4">
<h5 class="card-title">Child</h5>
<input class="form-control" type="text" id="childcnt" required="" placeholder="0">
</div>
<div class="col-lg-4">
<h5 class="card-title">Rooms</h5>
<input class="form-control" type="text" id="roomcnt" required="" placeholder="0">
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-2">
<div class="card" style="height: auto">
<div class="card-body">
<h5 class="card-title">Check</h5>
<input class="btn btn-outline-success" type="submit" id="searchAvail" name="searchAvail" value="search">
</div>
</div>
</div>
</div>
</form>
</div>
</section>
<section class="pt-5 m-0" id="intro">
<div class="container d-flex flex-column justify-content-around glowboxpink text-muted">
<div class="col-lg-6">
<p>A MEMORABLE HOLIDAY</p>
<h2>A great stay in a lovely hotel.</h2>
</div>
<div class="row">
<div class="col-lg-6">
<p>
The Elephant Bay Hotel is located in Pinnawala,
opposite the famous elephant orphanage.
It offers rooms with large private balconies and spectacular views of the Ma Oya River.
<br>
The rooms are spacious and bright,
with simple decoration and furniture.
They feature a flat-screen cable TV,
tea / coffee maker and a private bathroom.
</p>
</div>
<div class="col-lg-6">
<p>
Elephant Bay Hotel is 70 minutes
'drive from Bandaranaike International
Airport and 2 hours' drive from Colombo.
It is easy to drive to cities like Kandy and Nuwara Eliya.
</p>
<button class="btn btn-outline-success btn-lg"><a href="reservation.php" class="text-reset">Make a Reservation</a></button>
</div>
</div>
</div>
</section>
<section class="pt-5 m-0" id="rooms">
<div class="container-fluid d-flex flex-column justify-content-around">
<div class="row">
<div class="col-lg-6" id="lux">
<div class="container justify-content-center" style=" margin-top: 80px;">
<div class=" d-flex">
<div class="px-3 pt-3 pb-1">
<h1 class="text-white text-center display-4">
Luxury Suite Room
</h1>
<p class="text-white">FROM $399</p>
</div>
</div>
<button class="btn btn-outline-success btn-lg"><a href="reservation.php" class="text-reset">Make a Reservation</a></button>
</div>
</div>
<div class="col-lg-6" id="pool">
<div class="container justify-content-center" style=" margin-top: 80px;">
<div class=" d-flex ">
<div class="px-3 pt-3 pb-1">
<h1 class="text-white text-center display-4">
Infinity Pool
</h1>
<p class="text-white">FOR ALL OUR GUESTS</p>
</div>
</div>
<button class="btn btn-outline-success btn-lg"><a href="reservation.php" class="text-reset">Make a Reservation</a></button>
</div>
</div>
</div>
</div>
</section>
<section class="pt-5 m-0" id="cuslove">
<div class="container d-flex flex-column justify-content-around">
<div class="row">
<div class="col-lg-6 mb-3">
<h1>“Customers love our facilities”</h1>
<p class="text-muted">
Lorem ipsum dolor sit amet,
consectetur adipiscing elit.
Vivamus libero mauris, bibendum eget sapien ac,
ultrices rhoncus ipsum. Donec nec sapien in urna
fermentum ornare. Morbi vel ultrices leo. Sed eu
turpis eu arcu vehicula fringilla ut vitae orci.
Suspendisse maximus malesuada.
</p>
<button class="btn btn-outline-success btn-lg"><a href="reservation.php" class="text-reset">Make a Reservation</a></button>
</div>
<div class="col-lg-6">
<div class="row">
<div class="col-lg-6 mb-4">
<img class="img-flex" src="images/home-about-1.jpg">
</div>
<div class="col-lg-6 mb-4">
<img class="img-flex" src="images/home-about-2.jpg">
</div>
<div class="col-lg-6 mb-4">
<img class="img-flex" src="images/home-about-3.jpg">
</div>
<div class="col-lg-6 mb-4">
<img class="img-flex" src="images/home-about-4.jpg">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="pt-5 m-0" id="cuslove">
<?php
include './common/footer.php';
?>
</section>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script>
</script>
</body>