-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
299 lines (231 loc) · 12.7 KB
/
contact.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
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Travelops</title>
<link rel="shortcut icon" type="image/x-icon" href="./images/logo.png" />
<!-- font awesome cdn file link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--Cancellation Modal starts -->
<div class="modal fade" id="cancellationModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Booking Cancellation Request</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<label class="sr-only" for="inlineFormInputGroup">Booking Id</label>
<div class="input-group mb-2">
<div class="input-group-prepend">
<div class="input-group-text"><i class="fas fa-portrait"></i></div>
</div>
<input type="text" class="form-control" id="inlineFormInputGroup" placeholder="Enter Booking Id">
</div>
<label class="sr-only" for="inlineFormInputGroup">Mobile Number</label>
<div class="input-group mb-2">
<div class="input-group-prepend">
<div class="input-group-text"><i class="fas fa-phone-square-alt"></i></div>
</div>
<input type="text" class="form-control" id="inlineFormInputGroup" placeholder="Enter Mobile Number">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-success">Submit</button>
</div>
</div>
</div>
</div>
<!--Cancellation Modal ends -->
<!-- header section starts -->
<header>
<a href="./index.html" class="logo">
<img src="./images/header-logo.jpg" class="img-fluid" alt="Responsive image">
<span>Travelops</span>
</a>
<nav class="navbar">
<ul>
<li><a href="./index.html" class="active"><i class="fas fa-home"></i> HOME</a></li>
<li class="dropdown">
<a class="btn dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
<i class="fas fa-hotel"></i> HOTELS</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="./hotels.html">Hotels</a>
<a class="dropdown-item" href="./homestay.html">Home Stays</a>
<a class="dropdown-item" href="./resorts.html">Resorts</a>
</div>
</li>
<li class="dropdown">
<a class="btn dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
<i class="fas fa-umbrella-beach"></i> HOLIDAY</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="./holiday.html">Holiday Package</a>
<a class="dropdown-item" href="./honeymoon.html">Honeymoon Package</a>
<a class="dropdown-item" href="./festive.html">Festive Package</a>
<a class="dropdown-item" href="./vacation.html">Vacation Package</a>
</div>
</li>
<li class="dropdown">
<a class="btn dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
MORE <i class="fas fa-plus"></i></a>
<div class="dropdown-menu dropdown-menu-left" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="./about.html#about"><i class="fas fa-info-circle"></i> About</a>
<a class="dropdown-item" href="./contact.html#contact"><i class="fas fa-phone-alt"></i> Contact</a>
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#cancellationModal"><i class="fas fa-exclamation-triangle"></i> Cancellation</a>
</div>
</li>
</ul>
</nav>
<div class="fas fa-bars"></div>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="video">
<!--<video src="images/video.mp4" loop muted autoplay></video>-->
<img src="./images/hero.jpg" alt="Company Tagline" width="100vw">
</div>
<div class="content">
<h1>Contact with us Easily ...</h1>
</div>
</section>
<!-- home section ends -->
<!-- search section starts -->
<div id="searchbar" class="s002">
<form>
<!--<fieldset>
<legend><span>S</span>EARCH <span>H</span>OTEL</legend>
</fieldset>-->
<div class="inner-form">
<div class="input-field first-wrap">
<div class="icon-wrap">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path
d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z">
</path>
</svg>
</div>
<input id="search" type="text" placeholder="Enter location" />
</div>
<div class="input-field second-wrap">
<div class="icon-wrap">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path
d="M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z">
</path>
</svg>
</div>
<input type="text" placeholder="Checkin/Pickup" onfocus="(this.type='date')" onblur="(this.type='text')"/>
</div>
<div class="input-field third-wrap">
<div class="icon-wrap">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path
d="M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z">
</path>
</svg>
</div>
<input type="text" placeholder="Checkout/Drop" onfocus="(this.type='date')" onblur="(this.type='text')" />
<!-- class="datepicker" id="return" ,, id="depart" for checkin-->
</div>
<div class="input-field fouth-wrap">
<div class="icon-wrap">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-people" viewBox="0 0 16 16">
<path d="M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1h8zm-7.978-1A.261.261 0 0 1 7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002a.274.274 0 0 1-.014.002H7.022zM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0zM6.936 9.28a5.88 5.88 0 0 0-1.23-.247A7.35 7.35 0 0 0 5 9c-4 0-5 3-5 4 0 .667.333 1 1 1h4.216A2.238 2.238 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816zM4.92 10A5.493 5.493 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275zM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0zm3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z"/>
</svg>
</div>
<input id="search" type="number" placeholder="Guests" />
</div>
<div class="input-field fifth-wrap">
<button class="btn-search" type="button">SEARCH</button>
</div>
</div>
</form>
</div>
<!-- search section ends -->
<!-- contact section starts -->
<section id="contact" class="contact">
<h1 class="heading"><span>C</span>ONTACT <span>U</span>S</h1>
<div class="row">
<div class="contact-info">
<div class="box">
<h3> <i class="fas fa-home"></i> Branch Office </h3>
<p>Akshya Nagar 1st Block, <br>
1st Cross, Rammurthy nagar, <br>
Bangalore-560016 </p>
</div>
<div class="box">
<h3> <i class="fas fa-envelope"></i> E-mail </h3>
<p>travelops@gmail.com</p>
</div>
<div class="box">
<h3> <i class="fas fa-phone"></i> phone </h3>
<p>+91 0123 456 789</p>
</div>
</div>
<div id="enquiry" class="contact-form-container">
<form action="">
<h3>Enquiry Form</h3>
<div class="inputBox">
<input type="text" placeholder="Full Name">
<input type="email" placeholder="E-mail">
</div>
<div class="inputBox text-center">
<input type="tel" placeholder="Phone Number">
<input type="number" placeholder="Number of Guests">
</div>
<div class="inputBox">
<input type="text" placeholder="Checkin / Pickup" onfocus="(this.type='date')" onblur="(this.type='text')"/>
<input type="text" placeholder="Checkout / Drop" onfocus="(this.type='date')" onblur="(this.type='text')"/>
</div>
<textarea name="" id="" cols="30" rows="8" placeholder="Type your message"></textarea>
<input type="submit" value="Enquire Now">
</form>
</div>
</div>
</section>
<!-- contact section ends -->
<!-- Footer section starts -->
<section class="newsletter">
<h1>Have some Doubt ?</h1>
<p>Call us on : +91 0123 456 789</p>
<div class="container" style="max-width: 35rem;">
<a class="btn btn-primary btn-grad" href="./contact.html#enquiry" role="button">Submit a Query</a>
</div>
</section>
<section class="footer">
<h1 class="credit">© Developed by <a href="https://swarnadeep.vercel.app/"><span>Swarnadeep</span></a> | all rights reserved.</h1>
<div class="icons">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="far fa-envelope"></a>
<a href="#" class="fab fa-youtube"></a>
</div>
</section>
<!-- Footer section ends -->
<!-- jquery cdn link -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<!-- custom js file link -->
<script src="js/main.js"></script>
</body>
</html>