-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (58 loc) · 2.66 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Footer Design</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="images/f.png">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
</head>
<body>
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>company</h4>
<ul>
<li><a href="#">about us</a></li>
<li><a href="#">services</a></li>
<li><a href="#">resources</a></li>
<li><a href="#">projects</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Let Us Help You</h4>
<ul>
<li><a href="#">Your Accounts</a></li>
<li><a href="#">Your Orders</a></li>
<li><a href="#">Returns & Replacements</a></li>
<li><a href="#">order status</a></li>
<li><a href="#">Live Chat</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Shopping</h4>
<ul>
<li><a href="#">Men</a></li>
<li><a href="#">Women</a></li>
<li><a href="#">Accesories</a></li>
<li><a href="#">Gift Cards</a></li>
</ul>
</div>
<div class="footer-col">
<h4>follow us</h4>
<div class="social-links">
<a href="https://www.facebook.com/AndyCarvajal100fx"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com/AndreyCarvaja17"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/carvajal.ups/"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/Wasabi95"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>