-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
483 lines (461 loc) · 19 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
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="shortcut icon" href="./img/icons8-cab-64.png" type="image/x-icon" />
<link rel="stylesheet" href="./src/aos.css" />
<link rel="stylesheet" href="./src/output.css" />
<title>CabHUB</title>
<style>
.bgimg{
background: url('./img/background.png');
}
.bglayers{
background: url('./img/Layers.png');
}
.bglayer{
background: url('./img/Layer.png');
}
</style>
</head>
<body>
<div id="overlay"></div>
<div id="loader" class="w-[100vw] h-[100vh] fixed z-[999999]">
</div>
<!-- header -->
<header
class="bg-image bgimg bg-no-repeat bg-fixed bg-cover w-full h-[28rem] sm:h-[30rem] lg:h-[35rem] relative"
>
<!-- navbar -->
<section class="fixed z-50 w-full top-0 bg-trans">
<nav class="flex justify-between p-3 items-center">
<div class="logo">
<a href="#">
<img
src="./img/logo.png"
class="w-8/12 bg sm: md: lg: xl: 2xl:"
alt="logo"
/>
</a>
</div>
<div class="menu lg:hidden cursor-pointer">
<span class="material-symbols-outlined text-white" id="menu">
menu
</span>
</div>
<div class="list hidden lg:block">
<ul class="flex gap-5">
<li><a href="#home" class="nav_link active">Home</a></li>
<li><a href="#about" class="nav_link">About</a></li>
<li><a href="#feature" class="nav_link">Features</a></li>
<li><a href="#order_now" class="nav_link">Order Now</a></li>
<li class="mb-2"><a href="#review" class="nav_link">Customer Review</a></li>
<li><a href="#contact" class="nav_link"> Contacts</a></li>
</ul>
</div>
</nav>
<div
id="lists"
class="w-full bg-trans hidden py-5 transition-all scroll-smooth absolute"
>
<ul class="grid justify-items-center left-0">
<li class="mb-2"><a href="#home" class="nav_link active">Home</a></li>
<li class="mb-2"><a href="#about" class="nav_link">About</a></li>
<li class="mb-2"><a href="#feature" class="nav_link">Features</a></li>
<li class="mb-2"><a href="#order_now" class="nav_link">Order Now</a></li>
<li class="mb-2"><a href="#review" class="nav_link">Customer Review</a></li>
<li class="mb-2"><a href="#contact" class="nav_link"> Contacts</a></li>
</ul>
</div>
</section>
<!-- content -->
<section class="text-center content" id="home">
<h1 class="text-primary font-lato font-bold text-3xl mb-2 uppercase">
Book Cab Now
</h1>
<h2 class="text-white lg:text-5xl text-2xl font-medium font-lato mb-2">
+123 4567 8900
</h2>
<p class="text-white lg:text-xl tracking-widest uppercase mb-4">
www.psdfreebies.com
</p>
<img src="./img/car.png" alt="car" class="m-auto mb-0" width="600" data-aos="zoom-in-up" />
</section>
</header>
<!-- About -->
<section id="about" class="bg-primary pt-32 lg:pt-28 pb-10 px-4">
<div
class="container flex flex-col m-auto gap-5 lg:flex-row text-center lg:text-start"
>
<div data-aos="fade-down">
<h2 class="uppercase font-lato font-extrabold text-2xl pb-5">
BEst In City
</h2>
<h1 class="uppercase font-lato font-extrabold text-3xl pb-8">
Trusted Cab Servies in New York
</h1>
<p>
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit, massa efficitur dapibus pulvinar, sapien eros
sodales ante, euismod aliquet nulla metus a mauris.Quisque
sollicitudin feugiat risus, eu posuere ex euismod eu. Phasellus
hendrerit, massa efficitur dapibus pulvinar, sapien eros sodales
ante, euismod aliquet nulla metus a mauris.
</p>
<a href="#" class="bg-btn-color text-white rounded-xl px-5 py-2"
><button class="my-5">READ MORE</button></a
>
</div>
<div>
<div class="card" data-aos="zoom-in-up">
<div
class="card-header bg-btn-color text-center font-bold text-2xl"
>
<h1 class="text-white uppercase">
Book a <span class="text-primary">Cab</span>
</h1>
</div>
<div class="bg-white px-2">
<div class="items flex gap-2 lg:gap-2 py-5 flex-nowrap justify-center">
<div class="overflow-hidden p-2">
<input
type="text"
placeholder="Name"
class="my-2 px-2 border-b-2 w-full"
/>
<input
type="text"
placeholder="When"
class="my-2 px-2 border-b-2 w-full"
/>
<input
type="text"
placeholder="Start"
class="my-2 px-2 border-b-2 w-full"
/>
</div>
<div>
<input
type="text"
placeholder="Phone"
class="my-2 px-2 border-b-2 w-full"
/>
<input
type="text"
placeholder="Time"
class="my-2 px-2 border-b-2 w-full"
/>
<input
type="text"
placeholder="End"
class="my-2 px-2 border-b-2 w-full"
/>
</div>
</div>
<input
type="text"
placeholder="Choose Vehicle"
class="px-2 border-b-2 w-[95%]"
/><br />
<a href="#" class="bg-btn-color py-2 text-white rounded-3xl"
><button class="w-full uppercase font-semibold my-6">
SUbmit
</button></a
>
</div>
</div>
</div>
</div>
</section>
<!-- feature-1 -->
<section id="feature">
<div class="container m-auto py-5">
<h1 class="font-bold text-center text-4xl mb-20">
<span class="text-primary">OUR </span>Tariffs
</h1>
<div class="cardmodel" >
<div class="cardbox" data-aos="fade-up">
<div class="card-box-header">
<img src="./img/cab car.png" alt="cab" />
</div>
<div class="card-box-body">
<h1>Economy Class</h1>
<p>
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit, massa efficitur.
</p>
<h2>$1,5/mi</h2>
<button><a href="">read more</a></button>
</div>
</div>
<div class="cardbox relative" data-aos="flip-right">
<div class="card-box-header">
<img src="./img/cab car.png" alt="cab" />
</div>
<div class="card-box-body bg-primary">
<h1>Standard Class</h1>
<p>
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit, massa efficitur.
</p>
<h2 class="text-[#000000]">$1,5/mi</h2>
<button>
<a href="#" class="bg-black text-white p-2 rounded m-2"
>read more</a
>
</button>
<div class="bg-black">
<img
src="./img/D.png"
class="absolute bottom-0 right-0"
alt="d"
/>
<img
src="./img/rate.png"
class="absolute bottom-1 right-1"
alt="star"
/>
</div>
</div>
</div>
<div class="cardbox" data-aos="flip-left">
<div class="card-box-header">
<img src="./img/cab car.png" alt="cab" />
</div>
<div class="card-box-body">
<h1>Business Class</h1>
<p>
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit, massa efficitur.
</p>
<h2>$1,5/mi</h2>
<button><a href="">read more</a></button>
</div>
</div>
</div>
</div>
</section>
<!-- feature-2 -->
<section id="feature">
<div
class="relative bg-no-repeat bg-fixed bg-cover bglayers text-white pt-10 pb-10"
>
<!-- Gray Overlay -->
<div
class="absolute inset-0 bg-gray-800 opacity-50 mix-blend-multiply"
></div>
<!-- Content -->
<div class="relative z-10">
<h1 class="text-primary font-bold text-3xl text-center">
We Do Best
</h1>
<h1 class="font-bold text-3xl text-center">Than You Wish</h1>
<div class="items">
<div class="vbox" data-aos="fade-down">
<div class="">
<i class="fa-solid fa-star bg-primary text-black rounded-full p-4"></i>
</div>
<div class="des">
<h2>Home Pickup</h2>
<p>
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit, massa efficitur.
</p>
</div>
</div>
<div class="vbox" data-aos="fade-up">
<div class="">
<i class="fa-regular fa-hourglass-half bg-primary text-black rounded-full p-4"></i>
</div>
<div class="des">
<h2>Fast booking</h2>
<p>
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit, massa efficitur.
</p>
</div>
</div >
<div class="vbox" data-aos="fade-down">
<div class="">
<i class="fa-solid fa-building-columns bg-primary text-black rounded-full p-4"></i>
</div>
<div class="des">
<h2>Bonuses for ride</h2>
<p>
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit, massa efficitur.
</p>
</div>
</div>
<div class="vbox" data-aos="fade-up">
<div class="">
<i class="fa-solid fa-gear bg-primary text-black rounded-full p-4"></i>
</div>
<div class="des">
<h2>GPS searching</h2>
<p>
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit, massa efficitur.
</p>
</div>
</div>
</div>
<center>
<a href="#" class="bg-primary text-black rounded mx-auto p-3 mb-10">
<button class="text-center">Read more</button></a
>
</center>
</div>
</div>
</section>
<!-- order now -->
<section id="order_now">
<h1 class="text-primary font-bold text-3xl text-center mt-4">Download</h1>
<h1 class="font-bold text-3xl text-center">Best Cab Servies</h1>
<div class="flex flex-wrap justify-center" data-aos="zoom-in">
<div class="w-full lg:w-1/2 p-10 text-center">
<h3 class="my-4 font-bold text-xl">
Downlaod the Cab voucher app free! Get Exciting New Offers
</h3>
<p class="max-w-96 mx-auto lg:w-full">
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit, massa efficitur.
</p>
<div class="app-store flex gap-5 mt-10 justify-center">
<img src="./img/deployplay.png" alt="play store" width="100" />
<img src="./img/deployios.png" alt="app store" width="100" />
</div>
</div>
<div class="application w-full lg:w-1/2 mx-auto" data-aos="zoom-in-up">
<center>
<img src="./img/app.png" alt="application" width="300" />
</center>
</div>
</div>
</section>
<!-- review section -->
<section id="review">
<div class="bglayer bg-no-repeat bg-fixed bg-cover">
<div class="bg-[#423d3d7a]">
<h1 class="text-primary font-bold text-3xl text-center pt-5">Happy Client's</h1>
<h1 class=" font-bold text-3xl text-center">Testimonials</h1>
</div>
<div id="testimonials" class="flex flex-wrap gap-5 justify-center p-10">
<div class="testimonial bg-[#040707] hover:bg-[#0a1313] w-full lg:w-[40%] p-6 text-white rounded" data-aos="zoom-in-up">
<div class="client">
<p class="mb-4">
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit, massa efficitur.Quisque sollicitudin
feugiat risus.
</p>
<div class="client-details flex gap-4">
<img src="./img/client.png" alt="client" class="w-12 h-12 rounded-lg" />
<div>
<h1 class="uppercase text-primary">John Doe</h1>
<h2 class="uppercase">Business man</h2></div>
</div>
</div>
</div>
<div class="testimonial bg-[#040707] hover:bg-[#0a1313] w-full lg:w-[40%] p-6 text-white rounded" data-aos="zoom-in-down">
<div class="client">
<p class="mb-4">
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit, massa efficitur.Quisque sollicitudin
feugiat risus.
</p>
<div class="client-details flex gap-4">
<img src="./img/client.png" alt="client" class="w-12 h-12 rounded-lg" />
<div>
<h1 class="uppercase text-primary">John Doe</h1>
<h2 class="uppercase">Business man</h2></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- contact -->
<section id="contact">
<div class="bg-primary px-6 py-8">
<h2 class="font-bold text-center text-xl ">We are Ready to Take Your Call 24 Hours, 7 Days!</h2>
<h1 class="font-bold text-center text-4xl mt-4">+123 4567 8900</h1>
</div>
</section>
<!-- footer -->
<section id="contact">
<div class="footer">
<div id="footer1">
<h2 class="font-bold text-2xl mb-5 uppercase">About cab Hub</h2>
<div class="line"></div>
<p class="my-10">
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit, massa efficitur.Quisque sollicitudin feugiat
risus, eu posuere ex euismod eu.
</p>
<div class="flex flex-nowarp gap-4 text-primary">
<i class="fa-brands fa-facebook-f cursor-pointer hover:bg-primary hover:text-black p-3 rounded-full"></i>
<i class="fa-brands fa-google-plus-g cursor-pointer hover:bg-primary hover:text-black p-3 rounded-full"></i>
<i class="fa-brands fa-x-twitter cursor-pointer hover:bg-primary hover:text-black p-3 rounded-full"></i>
<i class="fa-brands fa-square-instagram cursor-pointer hover:bg-primary hover:text-black p-3 rounded-full"></i>
</div>
</div>
<div id="footer2">
<h2 class="font-bold text-2xl mb-5 uppercase">Download</h2>
<div class="line"></div>
<p class="my-10">
Quisque sollicitudin feugiat risus, eu posuere ex euismod eu.
Phasellus hendrerit.
</p>
<ul>
<li>Android Users <i class="fa-brands fa-android cursor-pointer hover:bg-primary hover:text-black p-3 rounded-full"></i></li><br>
<li>IOS Users <i class="fa-brands fa-apple cursor-pointer hover:bg-primary hover:text-black p-3 rounded-full"></i></li>
</ul>
</div>
<div id="footer3">
<h2 class="font-bold text-2xl mb-5 uppercase">Contact</h2>
<div class="line"></div>
<ul class="my-10">
<li class="flex gap-3"><span><i class="fa-solid fa-location-crosshairs"></i></span> <span>+123, Main Street, Your City, New York, USA 789456</span></li><br>
<li class="flex gap-3"><span><i class="fa-solid fa-mobile"></i></span><span>+123 4567 8900</span></li><br>
<li class="flex gap-3"><span><i class="fa-solid fa-envelope"></i></span><span>[email protected]</span></li><br>
<li class="flex gap-3"><span><i class="fa-solid fa-location-arrow"></i></span><span>www.psdfreebies.com</span></li><br>
</ul>
</div>
</div>
</section>
<!-- copyright -->
<footer class="bg-[#040707] text-white text-center py-5">Copyright © 2015 PSDfreebies.com</footer>
<script src="./js/script.js"></script>
<script src="./js/aos.js"></script>
<script>
AOS.init();
// You can also pass an optional settings object
// below listed default settings
AOS.init({
// Global settings:
disable: false, // accepts following values: 'phone', 'tablet', 'mobile', boolean, expression or function
startEvent: 'DOMContentLoaded', // name of the event dispatched on the document, that AOS should initialize on
initClassName: 'aos-init', // class applied after initialization
animatedClassName: 'aos-animate', // class applied on animation
useClassNames: false, // if true, will add content of `data-aos` as classes on scroll
disableMutationObserver: false, // disables automatic mutations' detections (advanced)
debounceDelay: 50, // the delay on debounce used while resizing window (advanced)
throttleDelay: 99, // the delay on throttle used while scrolling the page (advanced)
// Settings that can be overridden on per-element basis, by `data-aos-*` attributes:
offset: 120, // offset (in px) from the original trigger point
delay: 0, // values from 0 to 3000, with step 50ms
duration: 400, // values from 0 to 3000, with step 50ms
easing: 'ease', // default easing for AOS animations
once: false, // whether animation should happen only once - while scrolling down
mirror: false, // whether elements should animate out while scrolling past them
anchorPlacement: 'top-bottom', // defines which position of the element regarding to window should trigger the animation
});
</script>
</body>
</html>