"footer bootstrap 4"
Bootstrap 4.0.0 Snippet by kodakro

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<div class="container">
<div class="row">
<h2>Simple footer</h2>
</div>
</div>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<footer>
<div class="container-fluid bg-primary py-3">
<div class="container">
<div class="row">
<div class="col-md-7">
<div class="row py-0">
<div class="col-sm-1 hidden-md-down">
<a class="bg-circle bg-info" href="#">
<i class="fa fa-2x fa-fw fa-address-card" aria-hidden="true "></i>
</a>
</div>
<div class="col-sm-11 text-white">
<div><h4>··Contact</h4>
<p>···<span class="header-font">M</span>y<span class="header-font">w</span>website.com</p>
</div>
</div>
</div>
</div>
<div class="col-md-5">
<div class="d-inline-block">
<div class="bg-circle-outline d-inline-block" style="background-color:#3b5998">
<a href="https://www.facebook.com/"><i class="fa fa-2x fa-fw fa-facebook text-white"></i>
</a>
</div>
<div class="bg-circle-outline d-inline-block" style="background-color:#4099FF">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.header-font {
font-family: "Josefin Slab","Helvetica Neue",Helvetica,Arial,sans-serif;
color: #fd1506;
}
.fa-facebook{
color:#3b5998;
}
.fa-linkedin{
color:#0077B5;
}
.fa-twitter{
color:#4099FF;
}
.fa-google{
color:#d34836;
}
.bg-primary {
background-color: #000 !important;
}
.bg-circle
{
display: inline-block;
width: 60px;
height: 60px;
padding: 14px 4px;
color: #ececec;
text-align: center;
border-radius: 50%;
}
.bg-circle-outline
{
width: 50px;
height: 50px;
color:smoke;
padding: 8px 2px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

how to put logos into the circles

okihca () - 6 years ago - Reply 0