-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfooter.php
66 lines (65 loc) · 2.12 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<title>Footer</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="CSS/footer.css">
</head>
<style>
#footer-body{
max-width:100%;
}
</style>
<body id="footer-body">
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>LifeCare</h4>
<div class="logo-in-footer">
<img src="Images/logo.png">
</div>
<div class="footer-logo">
</div>
<p>No 1 Health Insurance<br> Company In Sri Lanka</p>
</div>
<div class="footer-col" id="mainbar">
<ul>
<li><a href="PHP/about.php">About Us</a></li>
<li><a href="PHP/ContactUs.php">Contact Us</a></li>
<li><a href="PHP/Terms and Conditions.php">Terms & Conditions</a></li>
<li><a href="PHP/FAQ.php">FAQ</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Contact Us</h4>
<ul>
<li><a href="https://shorturl.at/ceiQR">Address:No.17, Horton Place, Cinnamon Garden, <br>Sri Lanka</a></li>
<li><a href="tel:+1234567890">Tel : 0112935195</a></li>
<li>Fax: 0112935195</li>
<li>Email: [email protected]</li>
</ul>
</div>
<div class="footer-col">
<h4>follow us</h4>
<div class="social-links">
<a href="https://www.facebook.com"><img src="Images/facebook.png" alt="fb_logo"></a>
<a href="https://www.instagram.com"><img src="Images/instagram.png" alt="Instagram_logo"></a>
<a href="https://twitter.com"><img src="Images/twitter1.png" alt="Twitter_logo"></a>
<a href="https://linkedin.com"><img src="Images/linkedin.png" alt="Linkedin_logo"></a>
</div>
</div>
</div>
<div class="copyright">
<p>Copyright 2023 © LifeCare All Rights Reserved</p>
</div>
<div class="button-group" id="bottomlinks">
<a href="#"><button >Terms of Use</button></a>
<a href="#"><button >Cookies Policy</button></a>
<a href="PHP/Privacy & Policy.php"><button >Privacy Policy</button></a>
</div>
</div>
</footer>
</body>
</html>