HTML
xxxxxxxxxx
1
<!-- Remove the container if you want to extend the Footer to full width. -->
2
<div class="container my-5">
3
4
<footer class="bg-light text-center text-white">
5
<!-- Grid container -->
6
<div class="container p-4 pb-0">
7
<!-- Section: Social media -->
8
<section class="mb-4">
9
<!-- Facebook -->
10
<a
11
class="btn btn-primary btn-floating m-1"
12
style="background-color: #3b5998;"
13
href="#!"
14
role="button"
15
><i class="fab fa-facebook-f"></i
16
></a>
17
18
<!-- Twitter -->
19
<a
20
class="btn btn-primary btn-floating m-1"
21
style="background-color: #55acee;"
22
href="#!"
23
role="button"
24
><i class="fab fa-twitter"></i
25
></a>
26
27
<!-- Google -->
28
<a
29
class="btn btn-primary btn-floating m-1"
30
style="background-color: #dd4b39;"
31
href="#!"
32
role="button"
33
><i class="fab fa-google"></i
34
></a>
35
36
<!-- Instagram -->
37
<a
38
class="btn btn-primary btn-floating m-1"
39
style="background-color: #ac2bac;"
40
href="#!"
41
role="button"
42
><i class="fab fa-instagram"></i
43
></a>
44
45
<!-- Linkedin -->
46
<a
47
class="btn btn-primary btn-floating m-1"
48
style="background-color: #0082ca;"
49
href="#!"
50
role="button"
51
><i class="fab fa-linkedin-in"></i
52
></a>
53
<!-- Github -->
54
<a
55
class="btn btn-primary btn-floating m-1"
56
style="background-color: #333333;"
57
href="#!"
58
role="button"
59
><i class="fab fa-github"></i
60
></a>
61
</section>
62
<!-- Section: Social media -->
63
</div>
64
<!-- Grid container -->
65
66
<!-- Copyright -->
67
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
68
© 2020 Copyright:
69
<a class="text-white" href="https://mdbootstrap.com/">MDBootstrap.com</a>
70
</div>
71
<!-- Copyright -->
72
</footer>
73
74
</div>
75
<!-- End of .container -->
CSS
1
1
JS
1
1
Console errors: 0