-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoooter.html
More file actions
58 lines (56 loc) · 2.38 KB
/
foooter.html
File metadata and controls
58 lines (56 loc) · 2.38 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
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="foooters.css">
<title>Footer Design</title>
</head>
<body>
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h3>Company</h3>
<ul>
<li><a href="">About us</a></li>
<li><a href="">Our services</a></li>
<li><a href="">privacy policy</a></li>
<li><a href="">Affiliate policy</a></li>
</ul>
</div>
<div class="footer-col">
<h3>Get help</h3>
<ul>
<li><a href="">FAQ</a></li>
<li><a href="">Shipping</a></li>
<li><a href="">Return</a></li>
<li><a href="">Order status</a></li>
<li><a href="">Payment options</a></li>
</ul>
</div>
<div class="footer-col">
<h3>Online shop</h3>
<ul>
<li><a href="">Watch</a></li>
<li><a href="">bag</a></li>
<li><a href="">shoes</a></li>
<li><a href="">dress</a></li>
</ul>
</div>
<div class="footer-col">
<h3>Follow us</h3>
<div class = "social-links">
<a href=""><i class="fa-brands fa-facebook"></i></a>
<a href=""><i class="fa-brands fa-tiktok"></i></a>
<a href=""><i class="fa-brands fa-twitter"></i></a>
<a href=""><i class="fa-brands fa-youtube"></i></a>
<a href=""><i class="fa-brands fa-instagram"></i></a>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>