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
5
class="text-center text-lg-start text-white"
6
style="background-color: #929fba"
7
>
8
<!-- Grid container -->
9
<div class="container p-4 pb-0">
10
<!-- Section: Links -->
11
<section class="">
12
<!--Grid row-->
13
<div class="row">
14
<!-- Grid column -->
15
<div class="col-md-3 col-lg-3 col-xl-3 mx-auto mt-3">
16
<h6 class="text-uppercase mb-4 font-weight-bold">
17
Company name
18
</h6>
19
<p>
20
Here you can use rows and columns to organize your footer
21
content. Lorem ipsum dolor sit amet, consectetur adipisicing
22
elit.
23
</p>
24
</div>
25
<!-- Grid column -->
26
27
<hr class="w-100 clearfix d-md-none" />
28
29
<!-- Grid column -->
30
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mt-3">
31
<h6 class="text-uppercase mb-4 font-weight-bold">Products</h6>
32
<p>
33
<a class="text-white">MDBootstrap</a>
34
</p>
35
<p>
36
<a class="text-white">MDWordPress</a>
37
</p>
38
<p>
39
<a class="text-white">BrandFlow</a>
40
</p>
41
<p>
42
<a class="text-white">Bootstrap Angular</a>
43
</p>
44
</div>
45
<!-- Grid column -->
46
47
<hr class="w-100 clearfix d-md-none" />
48
49
<!-- Grid column -->
50
<hr class="w-100 clearfix d-md-none" />
51
52
<!-- Grid column -->
53
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mt-3">
54
<h6 class="text-uppercase mb-4 font-weight-bold">Contact</h6>
55
<p><i class="fas fa-home mr-3"></i> New York, NY 10012, US</p>
56
<p><i class="fas fa-envelope mr-3"></i> info@gmail.com</p>
57
<p><i class="fas fa-phone mr-3"></i> + 01 234 567 88</p>
58
<p><i class="fas fa-print mr-3"></i> + 01 234 567 89</p>
59
</div>
60
<!-- Grid column -->
61
62
<!-- Grid column -->
63
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mt-3">
64
<h6 class="text-uppercase mb-4 font-weight-bold">Follow us</h6>
65
66
<!-- Facebook -->
67
<a
68
class="btn btn-primary btn-floating m-1"
69
style="background-color: #3b5998"
70
href="#!"
71
role="button"
72
><i class="fab fa-facebook-f"></i
73
></a>
74
75
<!-- Twitter -->
76
<a
77
class="btn btn-primary btn-floating m-1"
78
style="background-color: #55acee"
79
href="#!"
80
role="button"
81
><i class="fab fa-twitter"></i
82
></a>
83
84
<!-- Google -->
85
<a
86
class="btn btn-primary btn-floating m-1"
87
style="background-color: #dd4b39"
88
href="#!"
89
role="button"
90
><i class="fab fa-google"></i
91
></a>
92
93
<!-- Instagram -->
94
<a
95
class="btn btn-primary btn-floating m-1"
96
style="background-color: #ac2bac"
97
href="#!"
98
role="button"
99
><i class="fab fa-instagram"></i
100
></a>
101
102
<!-- Linkedin -->
103
<a
104
class="btn btn-primary btn-floating m-1"
105
style="background-color: #0082ca"
106
href="#!"
107
role="button"
108
><i class="fab fa-linkedin-in"></i
109
></a>
110
<!-- Github -->
111
<a
112
class="btn btn-primary btn-floating m-1"
113
style="background-color: #333333"
114
href="#!"
115
role="button"
116
><i class="fab fa-github"></i
117
></a>
118
</div>
119
</div>
120
<!--Grid row-->
121
</section>
122
<!-- Section: Links -->
123
</div>
124
<!-- Grid container -->
125
126
<!-- Copyright -->
127
<div
128
class="text-center p-3"
129
style="background-color: rgba(0, 0, 0, 0.2)"
130
>
131
© 2020 Copyright:
132
<a class="text-white" href="https://mdbootstrap.com/"
133
>MDBootstrap.com</a
134
>
135
</div>
136
<!-- Copyright -->
137
</footer>
138
<!-- Footer -->
139
</div>
140
<!-- End of .container -->
CSS
1
1
JS
1
1
Console errors: 0