-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhotels-listing.php
807 lines (769 loc) · 51.1 KB
/
hotels-listing.php
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
<?php require_once 'includes/css-links.php' ?>
<body>
<!-- ======= Header ======= -->
<?php require_once 'includes/header.php'; ?>
<!-- End Header -->
<!-- Nav Mobile header -->
<?php require_once 'includes/sticky-header.php'; ?>
<!-- Nav Mobile header End -->
<!-- Main -->
<main id="main">
<!-- Search Area -->
<section id="hlistgsrch">
<div class="container border py-4">
<div class="row">
<div class="col-lg-3 m-auto">
<div class="view-map position-relative">
<img src="assets/img/staticmap.jpg" alt="" class="img-fluid w-100">
<div class="vtext ">
<a href="#" class="position-absolute">View Map</a>
</div>
</div>
</div>
<div class="col-lg-9">
<div class="chksrch">
<div class="chkform-sec">
<form action="#">
<div class="d-grid">
<!-- Name/Location -->
<div class="form-group ml">
<label for="nmelocatn" class="text-uppercase">Name</label>
<input type="text" id="nmelocatn" class="form-control form-control-lg" placeholder="Name or Location">
</div>
<!-- Check in - Check out -->
<div class="form-group ml">
<label for="date" class="text-uppercase">Date-in-out</label>
<input name="dates" type="text" id="date" class="form-control form-control-lg" placeholder="Checkin - Checkout">
</div>
</div>
<div class="d-flex justify-content-between align-items-center sndstep clearfix">
<!-- Rooms -->
<div class="form-group">
<label for="rooms" class="text-uppercase">Rooms</label>
<div class="qty d-flex">
<input type="text" class="incdec" id="rooms" value="1" min="1" max="5" required>
<div class="qty-nav d-flex flex-column">
<button type="button" class="qty-btn_room qty-up">+</button>
<button type="button" class="qty-btn_room qty-down">-</button>
</div>
</div>
</div>
<!-- Adults -->
<div class="form-group">
<label for="adults" class="text-uppercase">Adults</label>
<div class="qty d-flex">
<input type="text" class="indec" id="adults" value="1" min="1" max="5" required>
<div class="qty-nav d-flex flex-column">
<button type="button" class="qty-btn_adult qty-up">+</button>
<button type="button" class="qty-btn_adult qty-down">-</button>
</div>
</div>
</div>
<!-- Children -->
<div class="form-group">
<label for="children" class="text-uppercase">Children</label>
<div class="qty d-flex">
<input type="text" class="decin" id="children" value="0" min="0" max="5" required>
<div class="qty-nav d-flex flex-column">
<button type="button" class="qty-btn_children qty-up">+</button>
<button type="button" class="qty-btn_children qty-down">-</button>
</div>
</div>
</div>
<!-- search -->
<div class="form-group float-right m-0 p-0 d-flex align-items-center">
<div class="submit-btn m-0 ">
<button type="submit" class="btn m-0">
Search <i class="bx bx-search"></i>
</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Search area -->
<!-- Main content -->
<section id="flterlist">
<div class="container">
<div class="row ">
<div class="col-lg-12">
<div class="sort pt-3">
<div class="sortrlt border-bottom d-flex justify-content-between align-items-center flex-wrap flex-row">
<div class="sortype d-flex justify-content-center mb-5">
<div class="show_map"><a href="#"><i class="bx bx-map-pin pr-2"></i> Show Map</a></div>
<div id="slideFilter"><span><i class="bx bx-filter-alt pr-2"></i> Filter</span></div>
</div>
<div class="sortby d-flex align-items-center p-0 m-0">
<h6>Sort Results by:</h6>
<form action="#">
<div class="form-group">
<select class="data-select" name="sort" id="sortBy">
<option>Popularity</option>
<option>Star rating: High to low</option>
<option>Star rating: Low to high</option>
<option>Distance</option>
<option>Price: High to Low</option>
<option>Price: Low to High</option>
</select>
</div>
</form>
</div>
<div class="results">
<p>Results: <span class="pl-2">Showing 150 of 700 hotels.</span></p>
</div>
</div>
</div>
</div>
<!-- Filter -->
<div class="col-lg-3">
<div id="filter">
<div class="flterlistng bg-white">
<ul class="list-unstyled px-3 py-4">
<!-- Dismiss -->
<li class="p-0 mt-3 d-none">
<div class="pb-3">
<button class="close p-0 m-0" data-dismiss="filter" title="close">×</button>
</div>
</li>
<!-- Covid -->
<li class="cvid border-bottom">
<div class="py-2 d-flex justify-content-between">
<h6 class="text-uppercase">covid-19 <i class="bx bx-info-circle"></i></h6>
<img class="_3mqrboMx" src="https://static.tacdn.com/img2/icons/illustration-handwash.svg">
</div>
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="cvidcheck" checked>
<label for="cvidcheck" class="custom-control-label">Hotels taking safety measures</label>
</div>
</li>
<!-- Star rating -->
<li class="started border-bottom">
<div class="py-2">
<h6 class="text-uppercase">Star rating</h6>
</div>
<div class="rating">
<!-- 5 star -->
<div class="5star d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="5star">
<label for="5star" class="custom-control-label">
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
</label>
</div>
<div class="rnumber">
<span>4</span>
</div>
</div>
<!-- 4 star -->
<div class="4star d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="4star">
<label for="4star" class="custom-control-label">
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
</label>
</div>
<div class="rnumber">
<span>9+</span>
</div>
</div>
<!-- 3 star -->
<div class="3star d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="3star">
<label for="3star" class="custom-control-label">
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
</label>
</div>
<div class="rnumber">
<span>12+</span>
</div>
</div>
<!-- 2 star -->
<div class="2star d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="2star">
<label for="2star" class="custom-control-label">
<i class="bx bxs-star"></i>
<i class="bx bxs-star"></i>
</label>
</div>
<div class="rnumber">
<span>40</span>
</div>
</div>
<!-- 1 star -->
<div class="1star d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="1star">
<label for="1star" class="custom-control-label">
<i class="bx bxs-star"></i>
</label>
</div>
<div class="rnumber">
<span>55</span>
</div>
</div>
</div>
</li>
<!-- Facilites -->
<li class="falites border-bottom">
<div class="py-2">
<h6 class="text-uppercase">Facilities</h6>
</div>
<!-- Wifi -->
<div class="facities d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="wifi">
<label class="custom-control-label" for="wifi" class="pl-2">Free wifi</label>
</div>
<div class="rnumber">
<span>4</span>
</div>
</div>
<!-- Breakfast -->
<div class="facities d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="bkfast">
<label class="custom-control-label" for="bkfast" class="pl-2">Breakfast</label>
</div>
<div class="rnumber">
<span>4</span>
</div>
</div>
<!-- Pool -->
<div class="facities d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="pool">
<label class="custom-control-label" for="pool" class="pl-2">Pool</label>
</div>
<div class="rnumber">
<span>4</span>
</div>
</div>
<!-- Restaurant -->
<div class="facities d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="restrant">
<label for="restrant" class="custom-control-label">Restaurant</label>
</div>
<div class="rnumber">
<span>4</span>
</div>
</div>
<!-- Free Parking -->
<div class="facities d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="parking">
<label for="parking" class="custom-control-label">Free parking</label>
</div>
<div class="rnumber">
<span>4</span>
</div>
</div>
<!-- Spa -->
<div class="spa d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="spa">
<label for="spa" class="custom-control-label">Spa</label>
</div>
<div class="rnumber">
<span>10+</span>
</div>
</div>
<!-- Fitness center -->
<div class="fitness d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="fitness">
<label for="fitness" class="custom-control-label">Fitness center</label>
</div>
<div class="rnumber">
<span>12</span>
</div>
</div>
<div class="seelessmore" id="more_or_less">
<!-- Air Conditioned -->
<div class="air d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="air">
<label for="air" class="custom-control-label">Air conditioned</label>
</div>
<div class="rnumber">
<span>9+</span>
</div>
</div>
<!-- Elevator -->
<div class="elevator d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="elev">
<label for="elev" class="custom-control-label">Elevator</label>
</div>
<div class="rnumber">
<span>9+</span>
</div>
</div>
</div>
<!-- See more -->
<div class="facities more mt-2" id="more_facilities">
<label class="font-italic" id="togmore">See more</label>
</div>
</li>
<!-- Price -->
<li class="price border-bottom">
<div class="py-2">
<h6 class="text-uppercase">price</h6>
</div>
<div class="pb-3">
<input type="text" class="js-range-slider" name="my_range" value="" id="range-slider" min="0" />
</div>
<div class="hidden-inputs d-flex">
<input type="hidden" class="w-50" name="price-from" id="range-from">
<input type="hidden" class="w-50" name="price-to" id="range-to">
</div>
</li>
<!-- Style -->
<li class="style">
<div class="py-2">
<h6 class="text-uppercase">Style</h6>
</div>
<!-- Budget -->
<div class="lifestyle d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="budget">
<label for="budget" class="custom-control-label">Budget</label>
</div>
<div class="rnumber">
<span>3+</span>
</div>
</div>
<!-- Luxury -->
<div class="lifestyle d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="luxury">
<label for="luxury" class="custom-control-label">Luxury</label>
</div>
<div class="rnumber">
<span>4000+</span>
</div>
</div>
<!-- Business -->
<div class="lifestyle d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="biz">
<label for="biz" class="custom-control-label">Business</label>
</div>
<div class="rnumber">
<span>4</span>
</div>
</div>
<!-- Romatic -->
<div class="lifestyle d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="romatic">
<label for="romatic" class="custom-control-label">Romantic</label>
</div>
<div class="rnumber">
<span>2000+</span>
</div>
</div>
<!-- Standard -->
<div class="lifestyle d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="stnd">
<label for="stnd" class="custom-control-label">Standard</label>
</div>
<div class="rnumber">
<span>400+</span>
</div>
</div>
<!-- Best value -->
<div class="bestvalue d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="bestv">
<label for="bestv" class="custom-control-label">Best value</label>
</div>
<div class="rnumber">
<span>100+</span>
</div>
</div>
<!-- Classic -->
<div class="classic d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="classic">
<label for="classic" class="custom-control-label">Classic</label>
</div>
<div class="rnumber">
<span>15+</span>
</div>
</div>
<!-- Family Friendly -->
<div class="family d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="fam">
<label for="fam" class="custom-control-label">Family Friendly</label>
</div>
<div class="rnumber">
<span>28</span>
</div>
</div>
<!-- More here -->
<div class="seelessmore" id="more_or_less_style">
<!-- Quiet -->
<div class="quiet d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="quiet">
<label for="quiet" class="custom-control-label">Quiet</label>
</div>
<div class="rnumber">
<span>38</span>
</div>
</div>
<!-- Charming -->
<div class="charming d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="charming">
<label for="charming" class="custom-control-label">Charming</label>
</div>
<div class="rnumber">
<span>15+</span>
</div>
</div>
<!-- Trendy -->
<div class="trendy d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="trend">
<label for="trend" class="custom-control-label">Trendy</label>
</div>
<div class="rnumber">
<span>28+</span>
</div>
</div>
<!-- Party -->
<div class="party d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="party">
<label for="party" class="custom-control-label">Party</label>
</div>
<div class="rnumber">
<span>8+</span>
</div>
</div>
<!-- Villa -->
<div class="villa d-flex justify-content-between">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="villa">
<label for="villa" class="custom-control-label">Villa</label>
</div>
<div class="rnumber">
<span>45+</span>
</div>
</div>
</div>
<!-- See more -->
<div class="lifestyle more mt-2" id="more_style">
<label class="font-italic" id="togmore">See more</label>
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Listings -->
<div class="col-lg-9 p-0 m-0">
<div id="listbars">
<div class="hlisting">
<!-- Single hotel -->
<div class="sngl card p-0 ">
<div class="">
<div class="card-img p-0 m-0 ">
<div class="card-img-top" >
<a href="single-listing.php">
<img src="assets/img/hotels/abuja/Fraser-Suites-Abuja.jpg" alt="" class="img-fluid w-100">
</a>
</div>
</div>
<div class="card-img-overlay position-relative">
<div class="star-rate ">
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
</div>
<div class="sale-win">Top rated</div>
</div>
</div>
<!-- Card body -->
<div class="fl-wrap position-relative pl-4">
<div class="card-body m-0 px-3 py-3">
<div class="card-title ">
<h5><a href="single-listing.php">Fraser Suites Abuja</a></h5>
<p class="small"><i class="bx bx-map pr-1"></i>294, Leventis Close Central Business District, Abuja</p>
</div>
<div class="card-info pb-3 pt-2">
<span>5-star hotel in FCT Abuja with casino and outdoor pools.</span>
</div>
<div class="ftring">
<p>
<i class="bx bx-wifi" data-toggle="tooltip" data-placement="top" title="Free Wifi"></i>
<i class="bx bx-swim" data-toggle="tooltip" data-placement="top" title="Swimming Pool"></i>
<i class="bx bx-drink" data-toggle="tooltip" data-placement="top" title="Bar/Lounge"></i>
<i class="icon-fitness_center" data-toggle="tooltip" data-placement="top" title="Fitness Center"></i>
<i class="bx bx-spa" data-toggle="tooltip" data-placement="top" title="Spa"></i>
<i class="bx bxs-parking" data-toggle="tooltip" data-placement="top" title="Parking space"></i>
</p>
</div>
</div>
<!-- Card footer -->
<div class="card-footer bg-white border-0 px-4 py-0 m-0">
<div class="d-flex justify-content-between">
<div class="pricing">
<p class="small">AVG/NIGHT <span class="pl-1">$100</span> </p>
</div>
<div class="bking">
<a href="single-listing.php">Book Now</a>
</div>
</div>
</div>
</div>
</div><!--End single card-->
<!-- Single hotel -->
<div class="sngl card p-0 ">
<div class="">
<div class="card-img p-0 m-0 ">
<div class="card-img-top m-0 p-0">
<a href="single-listing.php">
<img src="assets/img/hotels/abuja/grand-pela-abuja-hotel-exterior.jpg" alt="" class="img-fluid w-100 ">
</a>
</div>
</div>
<div class="card-img-overlay position-relative">
<div class="star-rate ">
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
</div>
<div class="sale-win">Classic</div>
</div>
</div>
<!-- Card body -->
<div class="fl-wrap position-relative pl-4">
<div class="card-body m-0 px-3 py-3">
<div class="card-title ">
<h5><a href="single-listing.php">Grand Pela Hotel & Suites
<p class="small"><i class="bx bx-map"></i>02 Plot 649, Cadastral Zone B Near American Int’l School, Abuja</p>
</div>
<div class="card-info pb-3 pt-2">
<span>With over 85 spacious rooms of various categories; exquisitely furnished with state of the art fittings.</span>
</div>
<div class="ftring">
<p>
<i class="bx bx-wifi" data-toggle="tooltip" data-placement="top" title="Free Wifi"></i>
<i class="bx bx-swim" data-toggle="tooltip" data-placement="top" title="Swimming Pool"></i>
<i class="bx bx-drink" data-toggle="tooltip" data-placement="top" title="Bar/Lounge"></i>
<i class="icon-fitness_center" data-toggle="tooltip" data-placement="top" title="Fitness Center"></i>
<i class="bx bx-spa" data-toggle="tooltip" data-placement="top" title="Spa"></i>
<i class="bx bxs-parking" data-toggle="tooltip" data-placement="top" title="Parking space"></i>
</p>
</div>
</div>
<!-- Card footer -->
<div class="card-footer bg-white border-0 px-4 py-0 m-0">
<div class="d-flex justify-content-between">
<div class="pricing">
<p class="small">AVG/NIGHT <span class="pl-1">$90</span> </p>
</div>
<div class="bking">
<a href="single-listing.php">Book Now</a>
</div>
</div>
</div>
</div>
</div><!--End single card-->
<!-- Single hotel -->
<div class="sngl card p-0 ">
<div class="">
<div class="card-img p-0 m-0 ">
<div class="card-img-top m-0 p-0">
<a href="single-listing.html">
<img src="assets/img/hotels/abuja/Nordic-hotel-abuja.jpg" alt="" class="img-fluid w-100 h-100 ">
</a>
</div>
</div>
<div class="card-img-overlay position-relative">
<div class="star-rate ">
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
</div>
<div class="sale-win">Popular</div>
</div>
</div>
<!-- Card body -->
<div class="fl-wrap position-relative pl-4">
<div class="card-body m-0 px-3 py-3">
<div class="card-title ">
<h5><a href="single-listing.php">Nordic Hotel Abuja</a></h5>
<p class="small"><i class="bx bx-map"></i>Blvd, Plot 1332 Shehu Yar'adua Way, Abuja </p>
</div>
<div class="card-info pb-3 pt-2">
<span>3.5-star hotel with free breakfast and free valet parking.</span>
</div>
<div class="ftring">
<p>
<i class="bx bx-wifi" data-toggle="tooltip" data-placement="top" title="Free Wifi"></i>
<i class="bx bx-swim" data-toggle="tooltip" data-placement="top" title="Swimming Pool"></i>
<i class="bx bx-drink" data-toggle="tooltip" data-placement="top" title="Bar/Lounge"></i>
<i class="icon-fitness_center" data-toggle="tooltip" data-placement="top" title="Fitness Center"></i>
<i class="bx bx-spa" data-toggle="tooltip" data-placement="top" title="Spa"></i>
<i class="bx bxs-parking" data-toggle="tooltip" data-placement="top" title="Parking space"></i>
</p>
</div>
</div>
<!-- Card footer -->
<div class="card-footer bg-white border-0 px-4 py-0 m-0">
<div class="d-flex justify-content-between">
<div class="pricing">
<p class="small">AVG/NIGHT <span class="pl-1">$70</span> </p>
</div>
<div class="bking">
<a href="single-listing.php">Book Now</a>
</div>
</div>
</div>
</div>
</div><!--End single card-->
<!-- Single hotel -->
<div class="sngl card p-0 ">
<div class="">
<div class="card-img p-0 m-0 ">
<div class="card-img-top m-0 p-0">
<a href="single-listing.html">
<img src="assets/img/hotels/abuja/transcorp-hilton-abuja-source-transcorp-hotels.jpg" alt="" class="img-fluid w-100 ">
</a>
</div>
</div>
<div class="card-img-overlay position-relative">
<div class="star-rate ">
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
<i class="icon-star"></i>
</div>
<div class="sale-win">Best seller</div>
</div>
</div>
<!-- Card body -->
<div class="fl-wrap position-relative pl-4">
<div class="card-body m-0 px-3 py-3">
<div class="card-title ">
<h5><a href="single-listing.php">Transcorp Hilton Abuja</a></h5>
<p class="small"><i class="bx bx-map"></i>1 Aguiyi Ironsi St. Maitama, Abuja</p>
</div>
<div class="card-info pb-3 pt-2">
<span>Continental breakfast is served daily. Other meals are served in the restaurant, there is also an option of room service. The bar is well stocked with varieties of beverages.</span>
</div>
<div class="ftring">
<p>
<i class="bx bx-wifi" data-toggle="tooltip" data-placement="top" title="Free Wifi"></i>
<i class="bx bx-swim" data-toggle="tooltip" data-placement="top" title="Swimming Pool"></i>
<i class="bx bx-drink" data-toggle="tooltip" data-placement="top" title="Bar/Lounge"></i>
<i class="icon-fitness_center" data-toggle="tooltip" data-placement="top" title="Fitness Center"></i>
<i class="bx bx-spa" data-toggle="tooltip" data-placement="top" title="Spa"></i>
<i class="bx bxs-parking" data-toggle="tooltip" data-placement="top" title="Parking space"></i>
</p>
</div>
</div>
<!-- Card footer -->
<div class="card-footer bg-white border-0 px-4 py-0 m-0">
<div class="d-flex justify-content-between">
<div class="pricing">
<p class="small">AVG/NIGHT <span class="pl-1">$150</span> </p>
</div>
<div class="bking">
<a href="single-listing.php">Book Now</a>
</div>
</div>
</div>
</div>
</div><!--End single card-->
</div>
<!-- Pagination -->
<div class="more-loadings d-flex justify-content-center align-items-center hlisting-page">
<ul class="pagination pagination-sm">
<li class="page-item disabled">
<a class="page-link pnav" href="#">
<i class="icon-angle-double-left"></i>
</a>
</li>
<li class="page-item active">
<a class="page-link" href="#">
<span>1</span>
</a>
</li>
<li class="page-item">
<a class="page-link" href="#">
<span>2</span>
</a>
</li>
<li class="page-item">
<a class="page-link" href="#">
<span>3</span>
</a>
</li>
<li class="page-item">
<a class="page-link" href="#">
<span>4</span>
</a>
</li>
<li class="page-item">
<a class="page-link" href="#">
<span>5</span>
</a>
</li>
<li class="page-item">
<a class="page-link pnav" href="#">
<i class="icon-angle-double-right"></i>
</a>
</li>
</ul>
</div><!--End Pagination-->
</div>
</div>
</div>
</div>
</section>
<!-- End Main content -->
<!-- Subscribe -->
<?php require_once 'includes/subscribe.php'; ?>
<!-- End subscribe section -->
<!-- Footer section -->
<?php require_once 'includes/footer.php'; ?>
<!-- End footer section -->
<!-- Back-to-top -->
<div class="back-to-top" id="to-top">
<i class="bx bx-arrow-from-bottom"></i>
</div>
</main>
<!-- JavaScript Libraries -->
<?php require_once 'includes/scripts.php'; ?>
</body>
</html>