-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
55 lines (52 loc) · 2.51 KB
/
footer.php
File metadata and controls
55 lines (52 loc) · 2.51 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
<!-- Footer Section -->
<footer class="footer bg-dark text-white py-4">
<div class="container">
<div class="row">
<!-- Contact Information Column -->
<div class="col-md-4 mb-3">
<h5>Contact Us</h5>
<p><i class="fas fa-envelope"></i> Email: <a href="mailto:info@sljpcommunity.com"
class="text-white">info@sljpcommunity.com</a></p>
<p><i class="fas fa-phone-alt"></i> Phone: +1 (234) 567-890</p>
<p><i class="fas fa-map-marker-alt"></i> Address: 123 SLJP Street, City, Country</p>
</div>
<!-- Social Media Links Column -->
<div class="col-md-4 mb-3">
<h5>Follow Us</h5>
<a href="https://facebook.com" class="text-white mx-2" target="_blank">
<i class="fab fa-facebook fa-2x"></i>
</a>
<a href="https://twitter.com" class="text-white mx-2" target="_blank">
<i class="fab fa-twitter fa-2x"></i>
</a>
<a href="https://linkedin.com" class="text-white mx-2" target="_blank">
<i class="fab fa-linkedin fa-2x"></i>
</a>
<a href="https://instagram.com" class="text-white mx-2" target="_blank">
<i class="fab fa-instagram fa-2x"></i>
</a>
</div>
<!-- Useful Links Column -->
<div class="col-md-4 mb-3">
<h5>Useful Links</h5>
<ul class="list-unstyled">
<li><a href="/about" class="text-white">About Us</a></li>
<li><a href="/privacy-policy" class="text-white">Privacy Policy</a></li>
<li><a href="/terms" class="text-white">Terms & Conditions</a></li>
<li><a href="/contact" class="text-white">Contact</a></li>
</ul>
</div>
</div>
<!-- Copyright Section -->
<div class="text-center mt-4">
<p class="mb-0">© 2024 SLJP Community. All Rights Reserved.</p>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<script src="https://cdn.datatables.net/2.1.8/js/dataTables.js"></script>
<script src="https://cdn.datatables.net/2.1.8/js/dataTables.bootstrap5.js"></script>
</body>
</html>