HTML
xxxxxxxxxx
1
<!-- Remove the container if you want to extend the Footer to full width. -->
2
<div class="container my-5">
3
<!-- Footer -->
4
<footer class="text-center text-white" style="background-color: #3f51b5">
5
<!-- Grid container -->
6
<div class="container">
7
<!-- Section: Links -->
8
<section class="mt-5">
9
<!-- Grid row-->
10
<div class="row text-center d-flex justify-content-center pt-5">
11
<!-- Grid column -->
12
<div class="col-md-2">
13
<h6 class="text-uppercase font-weight-bold">
14
<a href="#!" class="text-white">About us</a>
15
</h6>
16
</div>
17
<!-- Grid column -->
18
19
<!-- Grid column -->
20
<div class="col-md-2">
21
<h6 class="text-uppercase font-weight-bold">
22
<a href="#!" class="text-white">Products</a>
23
</h6>
24
</div>
25
<!-- Grid column -->
26
27
<!-- Grid column -->
28
<div class="col-md-2">
29
<h6 class="text-uppercase font-weight-bold">
30
<a href="#!" class="text-white">Awards</a>
31
</h6>
32
</div>
33
<!-- Grid column -->
34
35
<!-- Grid column -->
36
<div class="col-md-2">
37
<h6 class="text-uppercase font-weight-bold">
38
<a href="#!" class="text-white">Help</a>
39
</h6>
40
</div>
41
<!-- Grid column -->
42
43
<!-- Grid column -->
44
<div class="col-md-2">
45
<h6 class="text-uppercase font-weight-bold">
46
<a href="#!" class="text-white">Contact</a>
47
</h6>
48
</div>
49
<!-- Grid column -->
50
</div>
51
<!-- Grid row-->
52
</section>
53
<!-- Section: Links -->
54
55
<hr class="my-5" />
56
57
<!-- Section: Text -->
58
<section class="mb-5">
59
<div class="row d-flex justify-content-center">
60
<div class="col-lg-8">
61
<p>
62
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt
63
distinctio earum repellat quaerat voluptatibus placeat nam,
64
commodi optio pariatur est quia magnam eum harum corrupti
65
dicta, aliquam sequi voluptate quas.
66
</p>
67
</div>
68
</div>
69
</section>
70
<!-- Section: Text -->
71
72
<!-- Section: Social -->
73
<section class="text-center mb-5">
74
<a href="" class="text-white me-4">
75
<i class="fab fa-facebook-f"></i>
76
</a>
77
<a href="" class="text-white me-4">
78
<i class="fab fa-twitter"></i>
79
</a>
80
<a href="" class="text-white me-4">
81
<i class="fab fa-google"></i>
82
</a>
83
<a href="" class="text-white me-4">
84
<i class="fab fa-instagram"></i>
85
</a>
86
<a href="" class="text-white me-4">
87
<i class="fab fa-linkedin"></i>
88
</a>
89
<a href="" class="text-white me-4">
90
<i class="fab fa-github"></i>
91
</a>
92
</section>
93
<!-- Section: Social -->
94
</div>
95
<!-- Grid container -->
96
97
<!-- Copyright -->
98
<div
99
class="text-center p-3"
100
style="background-color: rgba(0, 0, 0, 0.2)"
101
>
102
© 2020 Copyright:
103
<a class="text-white" href="https://mdbootstrap.com/"
104
>MDBootstrap.com</a
105
>
106
</div>
107
<!-- Copyright -->
108
</footer>
109
<!-- Footer -->
110
</div>
111
<!-- End of .container -->
CSS
1
1
JS
1
1
Console errors: 0