HTML
xxxxxxxxxx
1
<!-- Remove the container if you want to extend the Footer to full width. -->
2
<div class="container my-">
3
4
<footer class="text-center text-lg-start border border-white mt-xl-5 pt-4">
5
<!-- Grid container -->
6
<div class="container p-4">
7
<!--Grid row-->
8
<div class="row">
9
<!--Grid column-->
10
<div class="col-lg-3 col-md-6 mb-4 mb-lg-0">
11
<h5 class="text-uppercase mb-4">OUR WORLD</h5>
12
13
<ul class="list-unstyled mb-4">
14
<li>
15
<a href="#!" class="text-white">About us</a>
16
</li>
17
<li>
18
<a href="#!" class="text-white">Collections</a>
19
</li>
20
<li>
21
<a href="#!" class="text-white">Environmental philosophy</a>
22
</li>
23
<li>
24
<a href="#!" class="text-white">Artist collaborations</a>
25
</li>
26
</ul>
27
</div>
28
<!--Grid column-->
29
30
<!--Grid column-->
31
<div class="col-lg-3 col-md-6 mb-4 mb-lg-0">
32
<h5 class="text-uppercase mb-4">Assistance</h5>
33
34
<ul class="list-unstyled">
35
<li>
36
<a href="#!" class="text-white">Contact us</a>
37
</li>
38
<li>
39
<a href="#!" class="text-white">Size Guide</a>
40
</li>
41
<li>
42
<a href="#!" class="text-white">Shipping Information</a>
43
</li>
44
<li>
45
<a href="#!" class="text-white">Returns & Exchanges</a>
46
</li>
47
<li>
48
<a href="#!" class="text-white">Payment</a>
49
</li>
50
</ul>
51
</div>
52
<!--Grid column-->
53
54
<!--Grid column-->
55
<div class="col-lg-3 col-md-6 mb-4 mb-lg-0">
56
<h5 class="text-uppercase mb-4">Careers</h5>
57
58
<ul class="list-unstyled">
59
<li>
60
<a href="#!" class="text-white">Jobs</a>
61
</li>
62
</ul>
63
</div>
64
<!--Grid column-->
65
66
<!--Grid column-->
67
<div class="col-lg-3 col-md-6 mb-4 mb-lg-0">
68
<h5 class="text-uppercase mb-4">Sign up to our newsletter</h5>
69
70
<div class="form-outline form-white mb-4">
71
<input type="email" id="form5Example2" class="form-control" />
72
<label class="form-label" for="form5Example2">Email address</label>
73
</div>
74
75
<button type="submit" class="btn btn-outline-white btn-block">Subscribe</button>
76
</div>
77
<!--Grid column-->
78
</div>
79
<!--Grid row-->
80
</div>
81
<!-- Grid container -->
82
83
<!-- Copyright -->
84
<div class="text-center p-3 border-top border-white">
85
© 2020 Copyright:
86
<a class="text-white" href="https://mdbootstrap.com/">MDBootstrap.com</a>
87
</div>
88
<!-- Copyright -->
89
</footer>
90
91
</div>
92
<!-- End of .container -->
CSS
xxxxxxxxxx
1
body {
2
background-color: #262626;
3
}
JS
1
1
Console errors: 0