-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbuja.html
2267 lines (1829 loc) · 90.4 KB
/
Abuja.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
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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title> Chill & Stay Apartments </title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="author" content=" Arcade ">
<link rel="icon" type="image/x-icon" href="logo.png">
<meta name="keywords" content="
shortlet apartments Abuja
shortlet apartments Lagos
serviced apartments Abuja
serviced apartments Lagos
luxury apartments Abuja
luxury apartments Lagos
affordable apartments Abuja
affordable apartments Lagos
corporate housing Abuja
corporate housing Lagos
short-term accommodation Abuja
short-term accommodation Lagos
short stay apartments Abuja
short-term rentals Abuja
serviced apartments Abuja
furnished apartments Abuja
temporary accommodation Abuja
Secondary Keywords:
affordable short stay Abuja
Here are another 40 secondary keywords for your short-stay apartment business in Abuja:
Location-Specific Keywords:
short stay apartments in Jabi
short stay apartments in Utako
short stay apartments in Katampe
short stay apartments in Apo
short stay apartments in Kubwa
short stay apartments in Lugbe
short stay apartments near Transcorp Hilton Abuja
short stay apartments near Sheraton Hotel Abuja
short stay apartments near Cedar Crest Hotel Abuja
short stay apartments near Protea Hotel Abuja
Feature-Specific Keywords:
self-catering apartments Abuja
air-conditioned apartments Abuja
soundproof apartments Abuja
spacious apartments Abuja
modern apartments Abuja
stylish apartments Abuja
secure apartments Abuja
private apartments Abuja
quiet apartments Abuja
well-lit apartments Abuja
Purpose-Specific Keywords:
business traveler accommodation Abuja
student accommodation Abuja
expat accommodation Abuja
medical tourism accommodation Abuja
conference accommodation Abuja
Here are another 40 secondary keywords for your short-stay apartment business in Abuja:
Location-Specific Keywords:
short stay apartments in Gwarimpa
short stay apartments in Life Camp
short stay apartments in Nyanya
short stay apartments in Mararaba
short stay apartments near University of Abuja
short stay apartments near Abuja City Gate
short stay apartments near Abuja International Conference Centre
short stay apartments near National Stadium Abuja
short stay apartments near Jabi Lake
short stay apartments near Millennium Park Abuja
Feature-Specific Keywords:
fully-furnished apartments Abuja
well-equipped apartments Abuja
spacious living rooms Abuja
modern kitchens Abuja
comfortable beds Abuja
clean linen Abuja
high-speed internet Abuja
cable TV Abuja
24-hour security Abuja
on-site laundry facilities Abuja
Purpose-Specific Keywords:
family vacation rentals Abuja
couple's retreat Abuja
solo traveler accommodation Abuja
group accommodation Abuja
business retreat Abuja
General Keywords:
affordable housing Abuja
budget accommodation Abuja
cheap accommodation Abuja
luxury accommodation Abuja
premium accommodation Abuja
comfortable accommodation Abuja
convenient accommodation Abuja
safe accommodation Abuja
secure accommodation Abuja
clean accommodation Abuja
hygienic accommodation Abuja
well-maintained accommodation Abuja
modern accommodation Abuja
stylish accommodation Abuja
trendy accommodation Abuja
short-term rentals Abuja
temporary housing Abuja
short-term lets Abuja
holiday homes Abuja
vacation rentals Abuja
affordable stays Abuja
budget-friendly stays Abuja
luxury stays Abuja
comfortable stays Abuja
convenient stays Abuja
hassle-free stays Abuja
stress-free stays Abuja
relaxing stays Abuja
rejuvenating stays Abuja
memorable stays Abuja
luxury short stay Abuja
short stay apartments in Wuse 2
short stay apartments in Maitama
short stay apartments in Garki
short stay apartments in Maitama Abuja
short stay apartments in Wuse 2 Abuja
short stay apartments in Asokoro Abuja
short stay apartments in Garki Abuja
short stay apartments in Central Business District Abuja
short stay apartments near Nnamdi Azikiwe International Airport Abuja
short stay apartments near Jabi Lake Mall Abuja
short stay apartments near Abuja City Gate
short stay apartments near Millennium Park Abuja
short stay apartments near National Assembly Abuja
11. furnished apartments Abuja
12. serviced apartments Abuja
13. luxury apartments Abuja
14. budget apartments Abuja
15. family-friendly apartments Abuja
16. pet-friendly apartments Abuja
17. apartments with swimming pool Abuja
18. apartments with gym Abuja
19. apartments with Wi-Fi Abuja
20. apartments with parking Abuja
Purpose-Based Keywords:
21. corporate accommodation Abuja
22. holiday accommodation Abuja
23. vacation rentals Abuja
24. temporary housing Abuja
25. extended stay apartments Abuja
26. apartments for rent Abuja
27. flats for rent Abuja
28. accommodation in Abuja
29. hotels in Abuja
30. hostels in Abuja
31. guest houses in Abuja
32. Airbnb Abuja
33. Booking.com Abuja
34. Agoda Abuja
35. cheap accommodation Abuja
36. affordable accommodation Abuja
37. comfortable accommodation Abuja
38. secure accommodation Abuja
39. clean accommodation Abuja
40. modern accommodation Abuja
furnished apartments Abuja
furnished apartments Lagos
self-catering apartments Abuja
self-catering apartments Lagos
holiday rentals Abuja
holiday rentals Lagos
business travel accommodation Abuja
business travel accommodation Lagos
apartment rentals Abuja
apartment rentals Lagos
accommodation Abuja
accommodation Lagos
Nigeria accommodation
Nigeria apartments
Location-Specific Keywords:
Shortlet apartments in Maitama, Abuja
Serviced apartments in Ikoyi, Lagos
Luxury apartments in Lekki, Lagos
Affordable accommodation in Garki, Abuja
Corporate housing in Victoria Island, Lagos
Pet-friendly shortlet apartments in Abuja
Family-friendly serviced apartments in Lagos
Budget-friendly accommodation in Abuja
Luxury short-term rentals in Lagos
Modern apartments with swimming pools in Abuja
Best shortlet apartments in Abuja for business travelers
Top-rated serviced apartments in Lagos for families
Affordable accommodation options in Abuja for students
Luxury apartments in Lagos for a romantic getaway
Cheap short-term rentals in Abuja
Exclusive apartments in Lagos
Fully furnished apartments in Abuja
Serviced apartments with 24/7 security in Lagos
Modern apartments with high-speed internet in Abuja
shortlet apartments Abuja
serviced apartments Lagos
luxury apartments Nigeria
affordable accommodation Abuja/Lagos
shortlet apartments Lagos
serviced apartments Abuja
serviced apartments Lagos
luxury apartments Abuja
luxury apartments Lagos
affordable apartments Abuja
affordable apartments Lagos
corporate housing Abuja
corporate housing Lagos
short-term accommodation Abuja
short-term accommodation Lagos
furnished apartments Abuja
furnished apartments Lagos
self-catering apartments Abuja
self-catering apartments Lagos
holiday rentals Abuja
holiday rentals Lagos
business travel accommodation Abuja
business travel accommodation Lagos
apartment rentals Abuja
apartment rentals Lagos
accommodation Abuja
accommodation Lagos
Nigeria accommodation
Nigeria apartments
Location-Specific Keywords:
Shortlet apartments in Maitama, Abuja
Serviced apartments in Ikoyi, Lagos
Luxury apartments in Lekki, Lagos
Affordable accommodation in Garki, Abuja
Corporate housing in Victoria Island, Lagos
Pet-friendly shortlet apartments in Abuja
Family-friendly serviced apartments in Lagos
Budget-friendly accommodation in Abuja
Luxury short-term rentals in Lagos
Modern apartments with swimming pools in Abuja
Best shortlet apartments in Abuja for business travelers
Top-rated serviced apartments in Lagos for families
Affordable accommodation options in Abuja for students
Luxury apartments in Lagos for a romantic getaway
Cheap short-term rentals in Abuja
Exclusive apartments in Lagos
Fully furnished apartments in Abuja
Serviced apartments with 24/7 security in Lagos
Modern apartments with high-speed internet in Abuja
shortlet apartments Abuja
serviced apartments Lagos
luxury apartments Nigeria
affordable accommodation Abuja/Lagos
corporate housing Nigeria Experience unparalleled comfort and luxury at Chill & Stay. Our short-term apartments in Abuja and Lagos offer stylish living spaces, perfect for business trips or leisure getaways.
">
<meta name="description" content=" Elevate your stay in Abuja or Lagos with Chill & Stay.
Our exquisite apartments offer top-notch amenities, prime locations, and exceptional Find the best shortlet apartments in Abuja and Lagos at Chill & Stay.
Enjoy affordable luxury, prime locations, and unmatched comfort.service.">
<link rel="stylesheet" type="text/css" href="css/vendor.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Italiana&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap" rel="stylesheet">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
<symbol xmlns="http://www.w3.org/2000/svg" id="angle-right" viewBox="0 0 32 32">
<path fill="currentColor" d="M12.969 4.281L11.53 5.72L21.812 16l-10.28 10.281l1.437 1.438l11-11l.687-.719l-.687-.719z"/>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" id="angle-left" viewBox="0 0 32 32">
<path fill="currentColor" d="m19.031 4.281l-11 11l-.687.719l.687.719l11 11l1.438-1.438L10.187 16L20.47 5.719z"/>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" id="chevron-down" viewBox="0 0 24 24">
<path fill="currentColor" d="M7.41 8.58L12 13.17l4.59-4.59L18 10l-6 6l-6-6l1.41-1.42Z"/>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" id="arrow-right" viewBox="0 0 32 32">
<path fill="currentColor" d="M18.719 6.781L17.28 8.22L24.063 15H4v2h20.063l-6.782 6.781l1.438 1.438l8.5-8.5l.687-.719l-.687-.719z"/>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" id="arrow-left" viewBox="0 0 32 32">
<path fill="currentColor" d="m13.281 6.781l-8.5 8.5l-.687.719l.687.719l8.5 8.5l1.438-1.438L7.938 17H28v-2H7.937l6.782-6.781z"/>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" id="play" viewBox="0 0 24 24">
<path fill="currentColor" d="M8 5.14v14l11-7l-11-7Z"/>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" id="facebook" viewBox="0 0 24 24">
<path fill="currentColor" d="M9.198 21.5h4v-8.01h3.604l.396-3.98h-4V7.5a1 1 0 0 1 1-1h3v-4h-3a5 5 0 0 0-5 5v2.01h-2l-.396 3.98h2.396v8.01Z" />
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" id="youtube" viewBox="0 0 32 32">
<path fill="currentColor" d="M29.41 9.26a3.5 3.5 0 0 0-2.47-2.47C24.76 6.2 16 6.2 16 6.2s-8.76 0-10.94.59a3.5 3.5 0 0 0-2.47 2.47A36.13 36.13 0 0 0 2 16a36.13 36.13 0 0 0 .59 6.74a3.5 3.5 0 0 0 2.47 2.47c2.18.59 10.94.59 10.94.59s8.76 0 10.94-.59a3.5 3.5 0 0 0 2.47-2.47A36.13 36.13 0 0 0 30 16a36.13 36.13 0 0 0-.59-6.74ZM13.2 20.2v-8.4l7.27 4.2Z" />
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" id="twitter" viewBox="0 0 256 256">
<path fill="currentColor" d="m245.66 77.66l-29.9 29.9C209.72 177.58 150.67 232 80 232c-14.52 0-26.49-2.3-35.58-6.84c-7.33-3.67-10.33-7.6-11.08-8.72a8 8 0 0 1 3.85-11.93c.26-.1 24.24-9.31 39.47-26.84a110.93 110.93 0 0 1-21.88-24.2c-12.4-18.41-26.28-50.39-22-98.18a8 8 0 0 1 13.65-4.92c.35.35 33.28 33.1 73.54 43.72V88a47.87 47.87 0 0 1 14.36-34.3A46.87 46.87 0 0 1 168.1 40a48.66 48.66 0 0 1 41.47 24H240a8 8 0 0 1 5.66 13.66Z" />
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" id="instagram" viewBox="0 0 256 256">
<path fill="currentColor" d="M128 80a48 48 0 1 0 48 48a48.05 48.05 0 0 0-48-48Zm0 80a32 32 0 1 1 32-32a32 32 0 0 1-32 32Zm48-136H80a56.06 56.06 0 0 0-56 56v96a56.06 56.06 0 0 0 56 56h96a56.06 56.06 0 0 0 56-56V80a56.06 56.06 0 0 0-56-56Zm40 152a40 40 0 0 1-40 40H80a40 40 0 0 1-40-40V80a40 40 0 0 1 40-40h96a40 40 0 0 1 40 40ZM192 76a12 12 0 1 1-12-12a12 12 0 0 1 12 12Z" />
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" id="linkedin" viewBox="0 0 24 24">
<path fill="currentColor" d="M6.94 5a2 2 0 1 1-4-.002a2 2 0 0 1 4 .002zM7 8.48H3V21h4V8.48zm6.32 0H9.34V21h3.94v-6.57c0-3.66 4.77-4 4.77 0V21H22v-7.93c0-6.17-7.06-5.94-8.72-2.91l.04-1.68z" />
</symbol>
</svg>
<div id="preloader">
<div id="loader"></div>
</div>
<header id="header" class="site-header">
<nav id="header-nav" class="navbar navbar-expand-lg px-3">
<div class="container">
<a class="navbar-brand d-lg-none" href="index.html">
<img style="height: 1cm;" src="logo.png" class="logo">
</a>
<button class="navbar-toggler d-flex d-lg-none order-3 p-2" type="button" data-bs-toggle="offcanvas" data-bs-target="#bdNavbar" aria-controls="bdNavbar" aria-expanded="false" aria-label="Toggle navigation"><small>menu </small></button>
<div class="offcanvas offcanvas-end" tabindex="-1" id="bdNavbar" aria-labelledby="bdNavbarOffcanvasLabel">
<div class="offcanvas-header px-4 pb-0">
<a class="navbar-brand" href="index.html">
<img style="height: 1cm;" src="logo.png" class="logo">
</a>
<button type="button" class="btn-close btn-close-black" data-bs-dismiss="offcanvas" aria-label="Close" data-bs-target="#bdNavbar"></button>
</div>
<div class="offcanvas-body">
<ul id="navbar" class="navbar-nav w-100 d-flex justify-content-between align-items-center">
<ul class="list-unstyled d-lg-flex justify-content-md-between align-items-center">
<li class="nav-item">
<a class="nav-link ms-0" href="about.html">About</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle ms-0" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">Spaces <svg class="bi" width="18" height="18"><use xlink:href="#chevron-down"></use></svg></a>
<ul class="dropdown-menu">
<li>
<a href="Abuja.html" class="dropdown-item fs-5 fw-medium">Abuja <span class="text-primary"></span></a>
</li>
<li>
<a href="Lagos.html" class="dropdown-item fs-5 fw-medium">Lagos <span class="text-primary"></span></a>
</li>
</ul>
</li>
</ul>
<h3 style="color: rgb(7, 21, 34);"> Chill & Stay Apartments </h3>
<ul class="list-unstyled d-lg-flex justify-content-between align-items-center">
<li class="nav-item search-item">
<div id="search-bar" class="border-right d-none d-lg-block">
</div>
</li>
<li class="nav-item">
<a class="nav-link text-decoration- me-0" href="Rules.html" target="_blank"> Our Rules </a>
</li>
<li class="cart-dropdown nav-item dropdown">
<a class="nav-link dropdown-toggle me-0" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">Contact Us </a>
<div class="dropdown-menu dropdown-menu-end p-3">
<h4 class="d-flex justify-content-between align-items-center mb-3">
<span class="text-primary">Contact Us </span>
<span class="badge bg-primary rounded-pill">x</span>
</h4>
<ul class="list-group mb-3">
<li class="list-group-item bg-transparent border-dark d-flex justify-content-between lh-sm">
<div>
<h5 class="card-title fs-3 text-capitalize">
<a href=https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0">Whatsapp</a>
</h5>
<small class="text-body-secondary"></small>
</div>
<span class="text-primary"></span>
</li>
<li class="list-group-item bg-transparent border-dark d-flex justify-content-between lh-sm">
<div>
<h5 class="card-title fs-3 text-capitalize">
<a href="https://www.instagram.com/chill_and_stayapartments/ ">Instagram</a>
</h5>
<small class="text-body-secondary"></small>
</div>
<span class="text-primary"></span>
</li>
<li class="list-group-item bg-transparent border-dark d-flex justify-content-between">
<span class="text-uppercase"><b> Phone Call </b></span>
<strong>09124052026</strong>
</li>
</ul>
<div class="d-flex flex-wrap justify-content-center">
<a class="w-100 btn btn-dark mb-1" type="submit"> Book a Space </a>
<a class="w-100 btn btn-primary" type="submit">Register your Space </a>
</div>
</div>
</li>
</ul>
</ul>
</div>
</div>
</div>
</nav>
</header>
<script src="js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="js/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="js/plugins.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>
<BR><BR><BR> <BR>
<div class="container-xxl py-5">
<div class="container">
<div class="text-center wow fadeInUp" data-wow-delay="0.1s">
<h6 class="section-title bg-white text-center text-primary px-3">Range of Apartments for Abuja </h6>
<h1 class="mb-5"> Spaces </h1>
</div>
<!--Apartment 4 -->
<div class="row g-4 justify-content-center">
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="package-item">
<div class="carousel slide" data-bs-ride="carousel" id="carouselExampleControls1">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="dp1.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="dp3.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="dp4.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="dp5.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div class="d-flex border-bottom">
<small class="flex-fill text-center border-end py-2"><i class="fa fa-map-marker-alt text-primary me-2"></i>Jahi </small>
<small class="flex-fill text-center border-end py-2"><i class="fa fa-bed-alt text-primary me-2"></i>2-bedroom</small>
</div>
<div class="text-center p-4">
<h3 class="mb-0">N100,000 </h3>
<div class="mb-3">
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
</div>
<p>
1bedroom apartment available for short and long stay
Location: jahi
Price: 100k
Features ;
24/7 power supply
WiFi
Smart tv
Kitchenette
Gazebo
Serene environment
Security
</p>
<div class="d-flex justify-content-center mb-2">
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3 border-end" style="border-radius: 30px 0 0 30px;">Find Out More</a>
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3" style="border-radius: 0 30px 30px 0;">Book Now </a>
</div>
</div>
</div>
</div>
</div>
<!--Apartment 5 -->
<div class="row g-4 justify-content-center">
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="package-item">
<div class="carousel slide" data-bs-ride="carousel" id="carouselExampleControls1">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="ep.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ep1.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ep2.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ep3.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ep4.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div class="d-flex border-bottom">
<small class="flex-fill text-center border-end py-2"><i class="fa fa-map-marker-alt text-primary me-2"></i>Jahi </small>
<small class="flex-fill text-center border-end py-2"><i class="fa fa-bed-alt text-primary me-2"></i>2-bedroom</small>
</div>
<div class="text-center p-4">
<h3 class="mb-0">N150,000 </h3>
<div class="mb-3">
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
</div>
<p>
2BEDROOM APARTMENT
LOCATION: JAHI
PRICE: 150k
24/7 power supply
Balcony
Wifi
Smart tv
Secured area
</p>
<div class="d-flex justify-content-center mb-2">
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3 border-end" style="border-radius: 30px 0 0 30px;">Find Out More</a>
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3" style="border-radius: 0 30px 30px 0;">Book Now </a>
</div>
</div>
</div>
</div>
</div>
<!--Apartment 19 -->
<div class="row g-4 justify-content-center">
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="package-item">
<div class="carousel slide" data-bs-ride="carousel" id="carouselExampleControls1">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="xpp1.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="xpp2.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="xpp3.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="xpp4.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="xpp5.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="xpp6.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div class="d-flex border-bottom">
<small class="flex-fill text-center border-end py-2"><i class="fa fa-map-marker-alt text-primary me-2"></i> Gwarimpa </small>
<small class="flex-fill text-center border-end py-2"><i class="fa fa-bed-alt text-primary me-2"></i>2-bedroom</small>
</div>
<div class="text-center p-4">
<h3 class="mb-0"> N200,000 </h3>
<div class="mb-3">
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
</div>
<p>
GWARIMPA
PRICE:200k
24/7 power supply
Swimming pool
Snooker
Smart tv
Wifi
House keeper
</p>
<div class="d-flex justify-content-center mb-2">
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3 border-end" style="border-radius: 30px 0 0 30px;">Find Out More</a>
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3" style="border-radius: 0 30px 30px 0;">Book Now </a>
</div>
</div>
</div>
</div>
<!--Apartment 7 -->
<div class="row g-4 justify-content-center">
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="package-item">
<div class="carousel slide" data-bs-ride="carousel" id="carouselExampleControls1">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="ap7.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap7b.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap7c.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap7d.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap7e.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div class="d-flex border-bottom">
<small class="flex-fill text-center border-end py-2"><i class="fa fa-map-marker-alt text-primary me-2"></i>Wuse 2 </small>
<small class="flex-fill text-center border-end py-2"><i class="fa fa-bed-alt text-primary me-2"></i>2-bedroom</small>
</div>
<div class="text-center p-4">
<h3 class="mb-0">N200,000 </h3>
<div class="mb-3">
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
</div>
<p>
LOVELY TWO BEDROOM APARTMENT AVAILABLE FOR SHORT AND LONG STAY
LOCATION: WUSE2
PRICE: 200k
Features
Snooker board
Wifi
24/7 power supply
Outdoor sitout
Secured environment
</p>
<div class="d-flex justify-content-center mb-2">
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3 border-end" style="border-radius: 30px 0 0 30px;">Find Out More</a>
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3" style="border-radius: 0 30px 30px 0;">Book Now </a>
</div>
</div>
</div>
</div>
</div>
<!--Apartment 8 -->
<div class="row g-4 justify-content-center">
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="package-item">
<div class="carousel slide" data-bs-ride="carousel" id="carouselExampleControls1">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="ap8.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap8a.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap8b.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap8c.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap8d.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap8e.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div class="d-flex border-bottom">
<small class="flex-fill text-center border-end py-2"><i class="fa fa-map-marker-alt text-primary me-2"></i>Wuse 2 </small>
<small class="flex-fill text-center border-end py-2"><i class="fa fa-bed-alt text-primary me-2"></i>2-bedroom</small>
</div>
<div class="text-center p-4">
<h3 class="mb-0">N200,000 </h3>
<div class="mb-3">
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
</div>
<p>
BEAUTIFUL TWO BEDROOM AVAILABLE FOR SHORT AND LONG STAT
LOCATION: WUSE2
PRICE: 200k
</p>
<div class="d-flex justify-content-center mb-2">
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3 border-end" style="border-radius: 30px 0 0 30px;">Find Out More</a>
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3" style="border-radius: 0 30px 30px 0;">Book Now </a>
</div>
</div>
</div>
</div>
</div>
<!--Apartment 9 -->
<div class="row g-4 justify-content-center">
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="package-item">
<div class="carousel slide" data-bs-ride="carousel" id="carouselExampleControls1">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="ap9.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap9a.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap9b.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap9c.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap9d.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap9e.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="ap9f.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div class="d-flex border-bottom">
<small class="flex-fill text-center border-end py-2"><i class="fa fa-map-marker-alt text-primary me-2"></i>Jahi </small>
<small class="flex-fill text-center border-end py-2"><i class="fa fa-bed-alt text-primary me-2"></i>3-bedroom</small>
</div>
<div class="text-center p-4">
<h3 class="mb-0">N280,000 </h3>
<div class="mb-3">
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
</div>
<p>
BEAUTIFUL 3BEDROOM APARTMENT AVAILABLE FOR SHORT AND LONG STAY
LOCATION : JAHI
PRICE: 280k
REFUNDABLE CAUTION FEE 100k
Features:
HIGH SPEED WIFI
24/7 POWER SUPPLY WITH INVERTER BACKUP
SPACIOUS LIVING ROOM
DSTV & NETFLIX
DESIGNATED SMOKING AREA
SECURE NEIGHBORHOOD
</p>
<div class="d-flex justify-content-center mb-2">
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3 border-end" style="border-radius: 30px 0 0 30px;">Find Out More</a>
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3" style="border-radius: 0 30px 30px 0;">Book Now </a>
</div>
</div>
</div>
</div>
</div>
<!--Apartment 17 -->
<div class="row g-4 justify-content-center">
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="package-item">
<div class="carousel slide" data-bs-ride="carousel" id="carouselExampleControls1">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="AP17.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="AP17A.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="AP17B.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="AP17C.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="AP17D.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="AP17E.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls1" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div class="d-flex border-bottom">
<small class="flex-fill text-center border-end py-2"><i class="fa fa-map-marker-alt text-primary me-2"></i> KATAMPE </small>
<small class="flex-fill text-center border-end py-2"><i class="fa fa-bed-alt text-primary me-2"></i>1-bedroom</small>
</div>
<div class="text-center p-4">
<h3 class="mb-0"> N120,000 </h3>
<div class="mb-3">
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
<small class="fa fa-star text-primary"></small>
</div>
<p>
BEAUTIFUL ONEBEDROOM APARTMENT AVAILABLE FOR SHORT AND LONG STAY @chill_and_stayapartments
LOCATION: KATAMPE MAIN
PRICE: 120k
</p>
<div class="d-flex justify-content-center mb-2">
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3 border-end" style="border-radius: 30px 0 0 30px;">Find Out More</a>
<a href="https://api.whatsapp.com/send/?phone=2349124052026&text&type=phone_number&app_absent=0 " class="btn btn-sm btn-primary px-3" style="border-radius: 0 30px 30px 0;">Book Now </a>
</div>
</div>
</div>
</div>
</div>
<!--Apartment 18 -->
<div class="row g-4 justify-content-center">
<div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="package-item">
<div class="carousel slide" data-bs-ride="carousel" id="carouselExampleControls1">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="xp1.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="xp2.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="xp3.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">
<img src="xp4.jpg" class="d-block w-100 img-fluid" alt="...">
</div>
<div class="carousel-item">