-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
550 lines (407 loc) · 18.8 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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tembea-KE</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css">
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css file cdn link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- header section starts -->
<header class="header">
<a href="#" class="logo"> <i class="fas fa-paper-plane"></i> Tembea-KE </a>
<form action="" class="search-form">
<input type="search" name="" placeholder="search here..." id="searchBox">
<label for="searchBox" class="fas fa-search"></label>
</form>
<div class="icons">
<div class="fas fa-search" id="search-btn"></div>
<div class="fas fa-moon" id="theme-btn"></div>
<div class="fas fa-user" id="login-btn"></div>
<div class="fas fa-bars" id="menu-btn"></div>
</div>
<nav class="navbar">
<a href="#home">home</a>
<a href="#packages">packages</a>
<a href="#services">services</a>
<a href="#pricing">pricing</a>
<a href="#review">review</a>
<a href="#contact">contact</a>
<a href="#blogs">blogs</a>
</nav>
<form action="" class="login-form">
<div class="inputBox">
<span>username</span>
<input type="text" placeholder="enter your name">
</div>
<div class="inputBox">
<span>password</span>
<input type="password" placeholder="enter your password">
</div>
<div class="remember">
<input type="checkbox" name="" id="login-remember">
<label for="login-remember">remember me</label>
</div>
<input type="submit" class="btn" value="login">
</form>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="image" data-aos="fade-down">
<img src="images/home-img.svg" alt="">
</div>
<div class="content" data-aos="fade-up">
<h3>adventure is worthwhile</h3>
<p>Embark on unforgettable journeys and discover Kenya's wonders with Tembea-KE. From breathtaking landscapes to vibrant cultures, our platform opens the door to endless possibilities for exploration. Whether you're craving the serenity of secluded beaches, the adrenaline rush of mountain adventures, or the charm of bustling city streets, we've got you covered. With handpicked destinations, curated experiences, and seamless booking, let us be your trusted companion in crafting the perfect getaway. Start your next adventure today and create memories that will last a lifetime</p>
<a href="#" class="btn">explore now</a>
</div>
</section>
<!-- home section ends -->
<!-- filter form section starts -->
<section class="form-container" data-aos="zoom-in">
<form action="">
<div class="inputBox">
<span>Destination</span>
<input type="text" placeholder="search places">
</div>
<div class="inputBox">
<span>Arrival</span>
<input type="date">
</div>
<div class="inputBox">
<span>Depature</span>
<input type="date">
</div>
<input type="submit" value="book now" class="btn">
</form>
</section>
<!-- filter form section ends -->
<!-- packages section starts -->
<section class="packages" id="packages">
<h1 class="heading"> our <span>packages</span> </h1>
<div class="box-container">
<div class="box" data-aos="fade-up">
<div class="image">
<img src="images/Nakuru.jpg" alt="">
<h3> <i class="fas fa-map-marker-alt"></i> Nakuru </h3>
</div>
<div class="content">
<div class="price"> Ksh 5500.00 <span>6500.00</span> </div>
<p>Get, to visit this great city and see flamingoes & the great Rift-valley.</p>
<a href="#" class="btn"> book now</a>
</div>
</div>
<div class="box" data-aos="fade-up">
<div class="image">
<img src="images/Mombasa.png" alt="">
<h3> <i class="fas fa-map-marker-alt"></i> Mombasa </h3>
</div>
<div class="content">
<div class="price"> Ksh 8500.00 <span>9550.00</span> </div>
<p>Enjoy the sandy beaches and the sea breeze of the coast region plus swim with the dolphins !!</p>
<a href="#" class="btn"> book now</a>
</div>
</div>
<div class="box" data-aos="fade-up">
<div class="image">
<img src="images/Nairobi.png" alt="">
<h3> <i class="fas fa-map-marker-alt"></i> Nairobi </h3>
</div>
<div class="content">
<div class="price"> Ksh 6000.00 <span>7000.00</span> </div>
<p>From the sky scrappers to the National parks, get to visit the Nations capital and see the beauty of kenya</p>
<a href="#" class="btn"> book now</a>
</div>
</div>
<div class="box" data-aos="fade-up">
<div class="image">
<img src="images/Naivasha.png" alt="">
<h3> <i class="fas fa-map-marker-alt"></i> Naivasha </h3>
</div>
<div class="content">
<div class="price"> Ksh 5500. <span>7500.00</span> </div>
<p>Geothermal power, fresh-water lakes, tasty fish and many more visit today and enjoy, ps: bring an egg</p>
<a href="#" class="btn"> book now</a>
</div>
</div>
<div class="box" data-aos="fade-up">
<div class="image">
<img src="images/Kericho.jpg" alt="">
<h3> <i class="fas fa-map-marker-alt"></i> Kericho </h3>
</div>
<div class="content">
<div class="price"> Ksh 5500.00 <span>6050.00</span> </div>
<p>Ever wondered where Tea in your cup comes from, visit and get to see the great wonders of kericho.</p>
<a href="#" class="btn"> book now</a>
</div>
</div>
<div class="box" data-aos="fade-up">
<div class="image">
<img src="images/Nanyuki.png" alt="">
<h3> <i class="fas fa-map-marker-alt"></i> Nanyuki </h3>
</div>
<div class="content">
<div class="price"> Ksh 7500.00 <span>8500.00</span> </div>
<p>Experience the highest mountain in kenya right before your very eyes or maybe the Equator</p>
<a href="#" class="btn"> book now</a>
</div>
</div>
</div>
</section>
<!-- packages section ends -->
<!-- services section starts -->
<section class="services" id="services">
<h1 class="heading"> our <span>services</span> </h1>
<div class="box-container">
<div class="box" data-aos="zoom-in">
<span>01</span>
<i class="fas fa-hotel"></i>
<h3>affordable hotels</h3>
<p>Get to relax at various hotels across kenya during your stay at an affordable price, just for you !</p>
</div>
<div class="box" data-aos="zoom-in">
<span>02</span>
<i class="fas fa-bus"></i>
<h3>Safe travel</h3>
<p>When you book buses with us you get to experience both luxury and safety as as you Tembea kenya.</p>
</div>
<div class="box" data-aos="zoom-in">
<span>03</span>
<i class="fas fa-utensils"></i>
<h3>food and drinks</h3>
<p>Experience the cuisine from the various tribes and cultures in kenya, Your tastebuds are in for a treat !</p>
</div>
<div class="box" data-aos="zoom-in">
<span>04</span>
<i class="fas fa-globe"></i>
<h3>around Kenya</h3>
<p>Sight-see the beauty Kenyas' landscape and people have to offer.</p>
</div>
<div class="box" data-aos="zoom-in">
<span>05</span>
<i class="fas fa-hiking"></i>
<h3>new adventures</h3>
<p>You are in for adventure whenever you are in Kenya, we guarantee you that you will enjoy.</p>
</div>
<div class="box" data-aos="zoom-in">
<span>06</span>
<i class="fas fa-bullhorn"></i>
<h3>safety guide</h3>
<p>Your safety is our priority, thats why we are offering you a safety guide equiped with all the things and contacts whenever you need help or you are in danger.</p>
</div>
</div>
</section>
<!-- services section ends -->
<!-- pricing section starts -->
<section class="pricing" id="pricing">
<h1 class="heading"> our <span>pricing</span> </h1>
<div class="box-container">
<div class="box" data-aos="zoom-in-up">
<h3> Neighbourhood plan </h3>
<div class="price">
<span>Ksh</span>
<span class="amount">7500</span>
<span>/mo</span>
</div>
<ul>
<li>2 days</li>
<li>food and drinks</li>
<li>safety guide</li>
<li>insurance</li>
<li>hotel</li>
</ul>
<a href="#" class="btn">choose plan</a>
</div>
<div class="box" data-aos="zoom-in-up">
<h3> Regional plan </h3>
<div class="price">
<span>Ksh</span>
<span class="amount">15500</span>
<span>/mo</span>
</div>
<ul>
<li>5 days</li>
<li>food and drinks</li>
<li>safety guide</li>
<li>insurance</li>
<li>hotel</li>
</ul>
<a href="#" class="btn">choose plan</a>
</div>
<div class="box" data-aos="zoom-in-up">
<h3> National plan </h3>
<div class="price">
<span>Ksh</span>
<span class="amount">25500</span>
<span>/mo</span>
</div>
<ul>
<li>8 days</li>
<li>food and drinks</li>
<li>safety guide</li>
<li>insurance</li>
<li>luxury hotel</li>
</ul>
<a href="#" class="btn">choose plan</a>
</div>
</div>
</section>
<!-- pricing section ends -->
<!-- review section starts -->
<section class="review" id="review">
<h1 class="heading"> client's <span>review</span> </h1>
<div class="swiper-container review-slider" data-aos="zoom-in">
<div class="swiper-wrapper">
<div class="swiper-slide slide">
<img src="images/pic-1.png" alt="">
<h3>Njuguna</h3>
<p>Apart from the good offers i notice how the site is user friendly with features such as the dark mode which i do appreciate . I will definately be using Tembea-KE for as my local travel site !</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<div class="swiper-slide slide">
<img src="images/pic-2.png" alt="">
<h3>Betty</h3>
<p>I had an amazing experience booking my travel through this website. The process was seamless and the options provided were fantastic. I recommend Tembea-KE for your bookings !.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<div class="swiper-slide slide">
<img src="images/pic-3.png" alt="">
<h3>Youseff</h3>
<p>I recommend you to use Tembea-KE for your local bookings ! whatever they potray is whatever you receive , the booking was easy and the discounts were amaizing. I loved my trip to the city Nairobi, see you soon !</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<div class="swiper-slide slide">
<img src="images/pic-4.png" alt="">
<h3>Hajar</h3>
<p>I loved how booking was easy and also what they show here is what you see so no lies. I hope to use Tembea-KE for my local Kenyan travel as a booking site again !</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</section>
<!-- review section ends -->
<!-- contact section starts -->
<section class="contact" id="contact">
<h1 class="heading"> <span>contact</span> us </h1>
<form action="" data-aos="zoom">
<div class="inputBox">
<input type="text" placeholder="name" data-aos="fade-up">
<input type="email" placeholder="email" data-aos="fade-up">
</div>
<div class="inputBox">
<input type="number" placeholder="number" data-aos="fade-up">
<input type="text" placeholder="subject" data-aos="fade-up">
</div>
<textarea name="" placeholder="your message" id="" cols="30" rows="10" data-aos="fade-up"></textarea>
<input type="submit" value="send message" class="btn">
</form>
</section>
<!-- contact section ends -->
<!-- blog section starts -->
<section class="blogs" id="blogs">
<h1 class="heading"> our <span>blogs</span> </h1>
<div class="box-container">
<div class="box" data-aos="fade-up">
<div class="image">
<img src="images/blog-1.svg" alt="">
</div>
<div class="content">
<h3>Tembea Kenya Leo, adventure awaits</h3>
<a href="#" class="btn">read more</a>
<div class="icons">
<a href="#" id="date"> <i class="fas fa-calendar"></i> 1st Jan, 2024 </a>
<a href="#"> <i class="fas fa-user"></i> by admin </a>
</div>
</div>
</div>
</div>
</section>
<div style="display: flex; justify-content: center;">
<iframe width="560" height="315" src="https://www.youtube.com/embed/sxUyspOZZz0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<!-- blog section ends -->
<!-- footer section starts -->
<section class="footer">
<div class="box-container">
<div class="box" data-aos="fade-up">
<h3>About Us</h3>
<a href="https://docs.google.com/document/d/1gz_4gBox7ZENvyrw60Ls2cp-f8BepNb0WFQIoPM7fcM/edit?usp=sharing"> <i class="fas fa-chevron-right"></i> google-docs </a>
<a href="https://jhonwayne.medium.com/tembea-ke-a-local-travel-website-4d42bc3d9768"> <i class="fas fa-chevron-right"></i> medium </a>
</div>
<div class="box" data-aos="fade-up">
<h3>quick links</h3>
<a href="#"> <i class="fas fa-chevron-right"></i> home </a>
<a href="#"> <i class="fas fa-chevron-right"></i> packages </a>
<a href="#"> <i class="fas fa-chevron-right"></i> services </a>
<a href="#"> <i class="fas fa-chevron-right"></i> pricing </a>
<a href="#"> <i class="fas fa-chevron-right"></i> review </a>
<a href="#"> <i class="fas fa-chevron-right"></i> contact </a>
<a href="#"> <i class="fas fa-chevron-right"></i> blogs </a>
</div>
<div class="box" data-aos="fade-up">
<h3>contact info</h3>
<a href="#"> <i class="fas fa-phone"></i> +254-770-662195 </a>
<a href="#"> <i class="fas fa-envelope"></i> mseewak@gmail.com </a>
<a href="#"> <i class="fas fa-map-marker-alt"></i> Nairobi, Kenya </a>
</div>
<div class="box" data-aos="fade-up">
<h3>follow me</h3>
<a href="https://medium.com/@jhonwayne"> <i class="fab fa-medium"></i> medium </a>
<a href="https://twitter.com/blessmefornow"> <i class="fab fa-twitter"></i> Twitter </a>
<a href="https://www.instagram.com/invites/contact/?i=1x4haxv3ujuy2"> <i class="fab fa-instagram"></i> instagram </a>
<a href="https://github.com/johnahumanbeing/"> <i class="fab fa-github"></i> github </a>
</div>
</div>
<div class="credit"> created by <span><a href="https://github.com/johnahumanbeing/">JohnWayne Ngala</a></span> | © 2024 all rights reserved </div>
</section>
<!-- footer section ends -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script>
// Get the current date
const currentDate = new Date().toLocaleDateString('en-US', { day: 'numeric', month: 'short', year: 'numeric' });
// Update the date element with the current date
document.getElementById('date').innerHTML = `<i class="fas fa-calendar"></i> ${currentDate}`;
</script>
<!-- custom js file link -->
<script src="js/script.js"></script>
<script>
AOS.init({
duration:800,
delay:400
});
</script>
</body>
</html>