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: #45526e"
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
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mt-3">
51
<h6 class="text-uppercase mb-4 font-weight-bold">
52
Useful links
53
</h6>
54
<p>
55
<a class="text-white">Your Account</a>
56
</p>
57
<p>
58
<a class="text-white">Become an Affiliate</a>
59
</p>
60
<p>
61
<a class="text-white">Shipping Rates</a>
62
</p>
63
<p>
64
<a class="text-white">Help</a>
65
</p>
66
</div>
67
68
<!-- Grid column -->
69
<hr class="w-100 clearfix d-md-none" />
70
71
<!-- Grid column -->
72
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mt-3">
73
<h6 class="text-uppercase mb-4 font-weight-bold">Contact</h6>
74
<p><i class="fas fa-home mr-3"></i> New York, NY 10012, US</p>
75
<p><i class="fas fa-envelope mr-3"></i> info@gmail.com</p>
76
<p><i class="fas fa-phone mr-3"></i> + 01 234 567 88</p>
77
<p><i class="fas fa-print mr-3"></i> + 01 234 567 89</p>
78
</div>
79
<!-- Grid column -->
80
</div>
81
<!--Grid row-->
82
</section>
83
<!-- Section: Links -->
84
85
<hr class="my-3">
86
87
<!-- Section: Copyright -->
88
<section class="p-3 pt-0">
89
<div class="row d-flex align-items-center">
90
<!-- Grid column -->
91
<div class="col-md-7 col-lg-8 text-center text-md-start">
92
<!-- Copyright -->
93
<div class="p-3">
94
© 2020 Copyright:
95
<a class="text-white" href="https://mdbootstrap.com/"
96
>MDBootstrap.com</a
97
>
98
</div>
99
<!-- Copyright -->
100
</div>
101
<!-- Grid column -->
102
103
<!-- Grid column -->
104
<div class="col-md-5 col-lg-4 ml-lg-0 text-center text-md-end">
105
<!-- Facebook -->
106
<a
107
class="btn btn-outline-light btn-floating m-1"
108
class="text-white"
109
role="button"
110
><i class="fab fa-facebook-f"></i
111
></a>
112
113
<!-- Twitter -->
114
<a
115
class="btn btn-outline-light btn-floating m-1"
116
class="text-white"
117
role="button"
118
><i class="fab fa-twitter"></i
119
></a>
120
121
<!-- Google -->
122
<a
123
class="btn btn-outline-light btn-floating m-1"
124
class="text-white"
125
role="button"
126
><i class="fab fa-google"></i
127
></a>
128
129
<!-- Instagram -->
130
<a
131
class="btn btn-outline-light btn-floating m-1"
132
class="text-white"
133
role="button"
134
><i class="fab fa-instagram"></i
135
></a>
136
</div>
137
<!-- Grid column -->
138
</div>
139
</section>
140
<!-- Section: Copyright -->
141
</div>
142
<!-- Grid container -->
143
</footer>
144
<!-- Footer -->
145
</div>
146
<!-- End of .container -->
CSS
1
1
JS
1
1
Console errors: 0