-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathM_Footer.php
52 lines (45 loc) · 2.26 KB
/
M_Footer.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
<?php //footer
/**
* @author Yasiru
* contact me : https://linktr.ee/yasiruchamuditha for more information.
*/ ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>footer</title>
</head>
<body>
<!-- Footer Start -->
<div class="container-fluid bg-secondary py-5 px-sm-3 px-md-5" style="margin-top: 100px;">
<div class="row pt-5">
<div class="col-lg-6 col-md-6 mb-5">
<h4 class="text-uppercase text-light mb-4">Get In Touch</h4>
<p class="mb-2"><i class="fa fa-map-marker-alt text-white mr-3"></i>132 Beach Road, Galle 80000, Sri Lanka</p>
<p class="mb-2"><i class="fa fa-phone-alt text-white mr-3"></i>+012 345 67890</p>
<p><i class="fa fa-envelope text-white mr-3"></i>[email protected]</p>
<h6 class="text-uppercase text-white py-2">Follow Us</h6>
<div class="d-flex justify-content-start">
<a class="btn btn-lg btn-dark btn-lg-square mr-2" href="#"><i class="fab fa-twitter"></i></a>
<a class="btn btn-lg btn-dark btn-lg-square mr-2" href="#"><i class="fab fa-facebook-f"></i></a>
</div>
</div>
<div class="col-lg-6 col-md-6 mb-5">
<h4 class="text-uppercase text-light mb-4">Usefull Links</h4>
<div class="d-flex flex-column justify-content-start">
<a class="text-body mb-2" href="#"><i class="fa fa-angle-right text-white mr-2"></i>Private Policy</a>
<a class="text-body mb-2" href="#"><i class="fa fa-angle-right text-white mr-2"></i>Term & Conditions</a>
<a class="text-body mb-2" href="#"><i class="fa fa-angle-right text-white mr-2"></i>New Member Registration</a>
</div>
</div>
</div>
</div>
<div class="container-fluid bg-dark py-4 px-sm-3 px-md-5">
<p class="mb-2 text-center text-light">© <a href="#">www.fuelup.com</a>. All Rights Reserved.</p>
</div>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-lg btn-primary btn-lg-square back-to-top"><i class="fa fa-angle-double-up"></i></a>
</body>
</html>