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-dark 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 class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
11
><i class="fab fa-facebook-f"></i
12
></a>
13
14
<!-- Twitter -->
15
<a class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
16
><i class="fab fa-twitter"></i
17
></a>
18
19
<!-- Google -->
20
<a class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
21
><i class="fab fa-google"></i
22
></a>
23
24
<!-- Instagram -->
25
<a class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
26
><i class="fab fa-instagram"></i
27
></a>
28
29
<!-- Linkedin -->
30
<a class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
31
><i class="fab fa-linkedin-in"></i
32
></a>
33
34
<!-- Github -->
35
<a class="btn btn-outline-light btn-floating m-1" href="#!" role="button"
36
><i class="fab fa-github"></i
37
></a>
38
</section>
39
<!-- Section: Social media -->
40
</div>
41
<!-- Grid container -->
42
43
<!-- Copyright -->
44
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
45
© 2020 Copyright:
46
<a class="text-white" href="https://mdbootstrap.com/">MDBootstrap.com</a>
47
</div>
48
<!-- Copyright -->
49
</footer>
50
51
</div>
52
<!-- End of .container -->
CSS
1
1
JS
1
1
Console errors: 0