"Social Media Icons"
Bootstrap 4.1.1 Snippet by saikrishna99666

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.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!--Learn in https://www.youtube.com/watch?v=yU3giDe-N6c&ab_channel=CodingNepal-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="container">
<div class="button">
<div class="icon">
<i class="fa fa-facebook" aria-hidden="true"></i>
</div>
<span>Facebook</span>
</div>
<div class="button">
<div class="icon">
<i class="fa fa-instagram" aria-hidden="true"></i>
</div>
<span>Instagram</span>
</div>
<div class="button">
<div class="icon">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</div>
<span>Linkedin</span>
</div>
<div class="button">
<div class="icon">
<i class="fa fa-twitter" aria-hidden="true"></i>
</div>
<span>Twitter</span>
</div>
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
html, body{
display: grid;
height: 100%;
width: 100%;
place-items: center;
background: linear-gradient(315deg, #ffffff 0%, #d7e1ec);
}
.container .button{
display: inline-block;
height: 60px;
width: 60px;
float: left;
margin: 0 5px;
background: #fff;
border-radius: 50px;
cursor: pointer;
box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
transition: all 0.5s ease-out;
}
.container .button .icon{
display: inline-block;
text-align: center;
height: 60px;
width: 60px;
border-radius: 50px;
box-sizing: border-box;
line-height: 60px;
transition: all 0.5s ease-out;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: