-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
604 lines (571 loc) · 21.9 KB
/
index.html
File metadata and controls
604 lines (571 loc) · 21.9 KB
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
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
<!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>Shamba bid</title>
<!-- Font Awesome -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
rel="stylesheet"
/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
rel="stylesheet"
/>
<!-- MDB -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/5.0.0/mdb.min.css"
rel="stylesheet"
/>
<!-- MDB -->
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/5.0.0/mdb.min.js"
></script>
</head>
<body>
<header>
<style>
/* Carousel styling */
#introCarousel,
.carousel-inner,
.carousel-item,
.carousel-item.active {
height: 70vh;
}
.carousel-item:nth-child(1) {
/* https://mdbootstrap.com/img/Photos/Others/images/76.jpg */
background-image: url(' https://mdbootstrap.com/img/Photos/Others/images/78.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
.carousel-item:nth-child(2) {
/* https://mdbootstrap.com/img/Photos/Others/images/77.jpg */
background-image: url('/img/DJI_0881.JPG ');
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
.carousel-item:nth-child(3) {
/* https://mdbootstrap.com/img/Photos/Others/images/78.jpg' */
background-image: url('/img/land1.jpg ');
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
.carousel-item:nth-child(4) {
/* https://mdbootstrap.com/img/Photos/Others/images/78.jpg' */
background-image: url('/img/DJI_0993.JPG');
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
/* Height for devices larger than 576px */
@media (min-width: 992px) {
#introCarousel {
margin-top: -58.59px;
}
}
.navbar .nav-link {
color: #fff !important;
}
</style>
<nav
class="navbar navbar-expand-lg navbar-light d-none d-lg-block shadow-sm"
style="z-index: 1000"
>
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<!-- logo image -->
<img
src="img/logo.PNG"
width="90"
alt=""
lass="d-inline-block align-middle mr-2"
/>
</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarText"
aria-controls="navbarText"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<!-- search box for searching for the lpercel of interest -->
<form class="form-inline">
<input
class="form-control me-5"
type="search"
placeholder="City,County, province,Town"
aria-label="Search"
/>
</form>
</ul>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="index.html"
>Home <span class="sr-only"></span
></a>
</li>
<li class="nav-item">
<a class="nav-link" href="Map.html">Map</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Newplots.html">New Plots</a>
</li>
<li class="nav-item">
<a class="nav-link" href="bid.html">BID</a>
</li>
<li class="nav-item">
<a class="nav-link" href="deals.html">Deals</a>
</li>
<li class="nav-item">
<a class="nav-link" href="exclusive.html">Exclusive</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Help.html">Help</a>
</li>
<div class="vr">|</div>
<li class="nav-item" id="listing">
<a class="nav-link text-success" href="listing.html">
+ List Your Property</a
>
</li>
</ul>
</div>
</div>
</nav>
<!-- Carousel wrapper -->
<div id="introCarousel" class="carousel slide carousel-fade shadow-2-strong" data-mdb-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-mdb-target="#introCarousel" data-mdb-slide-to="0" class="active"></li>
<li data-mdb-target="#introCarousel" data-mdb-slide-to="1"></li>
<li data-mdb-target="#introCarousel" data-mdb-slide-to="2"></li>
<li data-mdb-target="#introCarousel" data-mdb-slide-to="3"></li>
</ol>
<!-- Inner -->
<div class="carousel-inner">
<!-- Single item -->
<div class="carousel-item active">
<div class="mask" style="background-color: rgba(0, 0, 0, 0.6);">
<div class="d-flex justify-content-center align-items-center h-100">
<div class="text-white text-center">
<h1 class="mb-3">Learn about zeruma</h1>
<h5 class="mb-4">Best land property analyzer</h5>
<a class="btn btn-outline-light btn-lg m-2" href="https://www.anmart.co.ke"
role="button" rel="nofollow" target="_blank">Start analyzing</a>
<a class="btn btn-outline-light btn-lg m-2" href="https://anmart.co.ke/"
target="_blank" role="button">Find a plot</a>
</div>
</div>
</div>
</div>
<!-- Single item -->
<div class="carousel-item">
<div class="mask" style="background-color: rgba(10, 33, 2, 0.6);">
<div class="d-flex justify-content-center align-items-center h-100">
<div class="text-white text-center">
<h2>Purchasing The land is Beyond The current view</h2>
</div>
</div>
</div>
</div>
<!-- Single item -->
<div class="carousel-item">
<div class="mask" style="
background: linear-gradient(
45deg,
rgba(29, 236, 197, 0.7),
rgba(91, 14, 214, 0.7) 100%
);
">
<div class="d-flex justify-content-center align-items-center h-100">
<div class="text-white text-center">
<h1>Your Area has more in the house </h1>
<h4>than they are saying</h4>
<a class="btn btn-outline-light btn-lg m-2"
href="https://www.anmart.co.ke" target="_blank" role="button">Learn
about Climate change in your nex plot</a>
</div>
</div>
</div>
</div>
<!-- Single item -->
<div class="carousel-item">
<div class="mask" style="
background: linear-gradient(
45deg,
rgba(29, 236, 197, 0.7),
rgba(214, 14, 54, 0.7) 100%
);
">
<div class="d-flex justify-content-center align-items-center h-100">
<div class="text-white text-center">
<h1 class="mb-3">Changes in the climate pattern</h1>
<h5 class="mb-4">The aftermath of the changes</h5>
</div>
</div>
</div>
</div>
</div>
<!-- Inner -->
<!-- Controls -->
<a class="carousel-control-prev" href="#introCarousel" role="button" data-mdb-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#introCarousel" role="button" data-mdb-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Carousel wrapper -->
</header>
<!-- <div class="container"> -->
<br><br>
<!--Main layout-->
<main class="mt-5">
<div class="container ">
<!--Section: Content-->
<section>
<div class="row" >
<div class="col-md-6 gx-5 mb-4 ">
<div class="bg-image hover-overlay ripple shadow-2-strong" data-mdb-ripple-color="light" >
<img src="img/undraw_delivery_re_f50b.svg" class="img-fluid" />
<a href="#!">
<div class="mask" style="background-color: rgba(251, 251, 251, 0.15);"></div>
</a>
</div>
</div>
<div class="col-md-6 gx-5 mb-4 bg-image text-black" >
<h4 class=" mb-5"><strong>Discover the amazing information about your land</strong></h4>
<p class="text-black text-end">
Tell us where you want to buy land and what your intentions of
use of the land is. Zeruma will help you find historical information
about it.
</p>
<a class="btn btn-outline-success mb-4 btn-lg m-2 " href="map.html"
target="_blank" role="button">Start Exploring</a>
</div>
</div>
</section>
<!--Section: Content-->
<!-- <hr class="my-3" /> -->
<br><br>
<!--Section: Content-->
<section>
<div class="row">
<div class="col-md-6 gx-5 mb-4 text-black" >
<h4 class="mb-5"><strong>Hit the search and find the suitable locations</strong></h4>
<p class="text-black">
Do you have ideas of the land type and features that you desire?
Is is issues with Social amenities? utility services? farming? residential?
worry no more because we have your back in finding the suitable location.
</p>
</div>
<div class="col-md-6 gx-5 mb-4">
<div class="bg-image hover-overlay ripple shadow-2-strong" data-mdb-ripple-color="light">
<img src="./img/undraw_search_re_x5gq.svg" class="img-fluid" />
<a href="#!">
<div class="mask" style="background-color: rgba(251, 251, 251, 0.15);"></div>
</a>
</div>
</div>
</div>
</section>
<!--Section: Content-->
<!-- <hr class="my-5" /> -->
<br>
<!--Section: Content-->
<section class="text-center">
<h4 class="mb-5"><strong>Recent Plots Dynamic Analysis</strong></h4>
<div class="row">
<div class="col-lg-4 col-md-12 mb-4">
<div class="card">
<div class="bg-image hover-overlay ripple" data-mdb-ripple-color="light">
<img src="./img/land1.jpg" class="img-fluid" />
<a href="#!">
<div class="mask" style="background-color: rgba(251, 251, 251, 0.15);"></div>
</a>
</div>
<div class="card-body">
<h5 class="card-title">Malindi</h5>
<p class="card-text">
The Properties are located 2kms and 45 minutes from Malindi town.
The projects have free-hold titles. 1/8th and 1/4 acre plots
</p>
<a href="#!" class="btn btn-success">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4">
<div class="card">
<div class="bg-image hover-overlay ripple" data-mdb-ripple-color="light">
<img src="/img/DJI_0980.JPG" class="img-fluid" />
<a href="#!">
<div class="mask" style="background-color: rgba(251, 251, 251, 0.15);"></div>
</a>
</div>
<div class="card-body">
<h5 class="card-title">NYANDARUA</h5>
<p class="card-text">
his property is right at the Middle of Mt. Kenya and The Aberdare Ranges.
Amazing, Breathtaking and Inspiring Views. 1/4 acre plots
</p>
<a href="map.html" class="btn btn-success">Read More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mb-4">
<div class="card">
<div class="bg-image hover-overlay ripple" data-mdb-ripple-color="light">
<img src="./img/DJI_0970.JPG" class="img-fluid" />
<a href="#!">
<div class="mask" style="background-color: rgba(251, 251, 251, 0.15);"></div>
</a>
</div>
<div class="card-body">
<h5 class="card-title">KIAMBU</h5>
<p class="card-text">
When you talk about having a Holiday Home this project
beckons at you with its enchanting beauty. 1/4 acre plots
</p>
<a href="map.html" class="btn btn-success">Read More</a>
</div>
</div>
</div>
</div>
</section>
<!--Section: Content-->
<br>
<!--Section: Content-->
<section>
<div class="row mb-8" style="background-color: rgb(240, 235, 227); min-height: 200px;">
<div class=" text-center" style="margin: 50px;">
<h3 class="">What we deal with <br></h3>
<p>We provide you with a clear picture of what your land looked like in the previous decades</p>
</div>
</div>
<div class="row mb-7" style="background-color: #000;">
<div class="col">
</div>
<div class="col"></div>
</div>
</section>
<!-- attributions -->
<section>
<div class="row mb-9">
<div class="col-md-6 ">
<div class="bg-image hover-overlay ripple shadow-2-strong" data-mdb-ripple-color="light" >
<img src="img/undraw_Around_the_world_re_rb1p.png" class="img-fluid" />
<a href="#!">
<div class="mask" style="background-color: rgba(251, 251, 251, 0.15);"></div>
</a>
</div>
</div>
<div class="col-md-6 d-inline-flex">
<div class="col-md-12">
<h5>Why know historical information about the property</h5>
<p class="card-text">
<li>Utility connectivity</li>
<li>Catastrophic events</li>
<li>Information guided investment</li>
</p>
<p class="card-text">
Plots with a view of the upcoming Konza Technopolis City. The Price starts from Ksh 695K per 1/8th acre plot. Installments upto 6 months
</p>
</div>
</div>
</div>
</section>
<!-- <hr class="my-5" /> -->
<br>
<!--Section: Content-->
<section>
<div class="row mb-8" style="background-color: rgb(234, 240, 227); min-height: 30vh;">
<div class=" text-center" style="margin: 50px;">
<p class="">Do you want to own a pieve of land? <br>zeruma gives you the ability to bid and win a chance to own a piece of land</p>
<a class="btn btn-outline-success mb-4 btn-lg m-2 " href="https://anmart.co.ke/"
target="_blank" role="button">Start bidding</a>
</div>
</div>
<div class="row mb-7" style="background-color: #000;">
<div class="col">
</div>
<div class="col"></div>
</div>
</section>
<!-- video section -->
<section>
<div class="row mb-4">
<div class="col-md-6 d-inline-flex">
<div class="col-md-6">
<h5>Why know historical information about the property</h5>
<p class="card-text">
<li>Utility connectivity</li>
<li>Catastrophic events</li>
<li>Information guided investment</li>
</p>
</div>
<div class="col-md-6">
<p class="card-text">
Plots with a view of the upcoming Konza Technopolis City. The Price starts from Ksh 695K per 1/8th acre plot. Installments upto 6 months
</p>
</div>
</div>
<div class="col-md-6 ">
<iframe width="420" height="300"
src="https://www.youtube.com/embed/8smnPLe8SDQ?controls=0&autoplay=0&mute=1">
</iframe>
</div>
</div>
</section>
<!-- advert section -->
<section>
<div class="row mb-5" style="background-image: url('./img/DJI_0970.JPG'); height:200px;" >
<h2 class="text-center text-white" style="margin: 50px;">Flooding, Land slide, Wild animals Could affect you.</h2>
</div>
</section>
<!--Section: Content-->
</div>
</main>
<!--Main layout-->
</body>
<!-- Footer -->
<footer class="text-center text-lg-start bg-success text-dark " style="background-color: rgba(18, 94, 51, 0.203); ">
<!-- Section: Social media -->
<section
class="d-flex justify-content-center justify-content-lg-between p-4 border-bottom"
>
<!-- Left -->
<div class="me-5 d-none d-lg-block">
<span>Get connected with us on social networks:</span>
</div>
<!-- Left -->
<!-- Right -->
<div>
<a href="www.facebook.com/zerumaProperty" class="me-4 link-primary">
<i class="fab fa-facebook-f"></i>
</a>
<a href="www.twiter.com/zerumaProperty" class="me-4 link-light">
<i class="fab fa-twitter"></i>
</a>
<a href="mailto:info@zeruma.co.ke" class="me-4 link-light">
<i class="fab fa-google"></i>
</a>
<a href="www.instagram.com/zerumaProperty" class="me-4 link-danger">
<i class="fab fa-instagram"></i>
</a>
<a href="www.linkedin.com/zerumaProperty" class="me-4 link-primary">
<i class="fab fa-linkedin"></i>
</a>
<a href="www.github.com/zerumaproperty" class="me-4 link-light">
<i class="fab fa-github"></i>
</a>
</div>
<!-- Right -->
</section>
<!-- Section: Social media -->
<!-- Section: Links -->
<section class="">
<div class="container text-center text-md-start mt-5">
<!-- Grid row -->
<div class="row mt-3">
<!-- Grid column -->
<div class="col-md-3 col-lg-4 col-xl-3 mx-auto mb-4">
<!-- Content -->
<h6 class="text-uppercase fw-bold mb-4">
<i class="fas fa-gem me-3 text-light"></i>Zeruma Property
</h6>
<p>
Game changers in the purchase of land pre-transactions, check the feasibility,value,Risk assesment,Utility Connectivity of the property before buying.
Let's help you get off the Conmanship of the seller.
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">Services</h6>
<p>
<a href="#!" class="text-reset">Risk Assesment</a>
</p>
<p>
<a href="#!" class="text-reset">Utility Connectivity</a>
</p>
<p>
<a href="#!" class="text-reset">Value of the Land</a>
</p>
<p>
<a href="#!" class="text-reset">Laravel</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">Useful links</h6>
<p>
<a href="#!" class="text-reset">New Plots</a>
</p>
<p>
<a href="#!" class="text-reset">Biddin for Land</a>
</p>
<p>
<a href="#!" class="text-reset">Land Clearance</a>
</p>
<p>
<a href="#!" class="text-reset">Help</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mb-md-0 mb-4">
<!-- Links -->
<h6 class="text-uppercase fw-bold mb-4">Contact</h6>
<p>
<i class="fas fa-home me-3 text-light"></i> Nyeri, Kenya
</p>
<p>
<i class="fas fa-envelope me-3 text-light"></i> zeruma@anmart.co.ke
</p>
<p>
<i class="fas fa-phone me-3 text-light"></i> + 254 713 297 997
</p>
<p>
<i class="fas fa-print me-3 text-light"></i> + 254 713 297 997
</p>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
</section>
<!-- Section: Links -->
<!-- Copyright -->
<div class="text-center p-4" style="background-color: rgba(22, 89, 51, 0.145)">
© 2022 Copyright:
<a class="text-reset fw-bold" href="https://zeruma.com/"
>www.zeruma.com</a
>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
</html>