-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfooter.php
50 lines (48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Click Cart</title>
<link rel="stylesheet" href="./css/footer.css">
</head>
<body>
<footer id="footer">
<div class="footercontainer">
<div class="fRow">
<div class="fCol">
<p>Payment Method</p>
<i class="fa-solid fa-money-bill"></i>
<i class="fa-brands fa-cc-visa" aria-hidden="true"></i>
<i class="fa-brands fa-cc-mastercard" aria-hidden="true"></i>
<i class="fa-brands fa-paypal" aria-hidden="true"></i>
</div>
<div class="fCol">
<p>Follow Us</p>
<a href="https://www.facebook.com"><i class="fa-brands fa-facebook-f"></i></a>
<a href="https://www.twitter.com"><i class="fa-brands fa-twitter"></i></a>
<a href="https://www.instagram.com/"><i class="fa-brands fa-instagram" aria-hidden="true"></i></a>
<a href="https://www.youtube.com/"><i class="fa-brands fa-youtube" aria-hidden="true"></i></a>
</div>
<div class="fCol">
<p><b>Customer Care</b></p>
<a href="./contactus.php"><p>Contact Us</p></a>
<a href="./helpcenter.php"><p>Help Center</p></a>
</div>
<div class="fCol">
<div class="item">
<p><b>Information</b></p>
<a href="./aboutus.php"><p>About Us</p></a>
<a href="./privacy.php"><p>Privacy Policy</p></a>
<a href="./termsofservice.php"><p>Term of Service</p></a>
<a href="./mobileapp.php"><p>Mobile App</p></a>
</div>
</div>
</div>
<hr>
<p>© 2023 ClickCart. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>