Bootstrap circular shape social media icons snipp

Circular shape social media icons bootstrap snipp made with bootstrap, you can use this on middle of your web page, simple div structure easy to implement.




<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link href="https://cdn.lineicons.com/2.0/LineIcons.css" rel="stylesheet">
<title>Bootstrap map with contact form</title>
</head>

<body>
<style type="text/css">
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
body {
    font-family: 'Roboto', sans-serif;
}
.icon-circle-80 {
    transition: all 0.3s ease;
    width: 80px;
    margin: 0 8px;
    height: 80px;
    border-radius: 80px;
    font-size: 15px;
    border: 2px solid #ebebeb;
    cursor: pointer;
    background-color:#f5f5f5;
}
.icon-circle-80:hover {
    box-shadow: 0px 0px 5px 8px rgba(0,0,0,0.08);
}
.icon-circle-80 i{
font-size:20px;    
}
.icon-circle-80 a{
color:#222;    
}
.icon-circle-80:hover{
background-color: #e34c43;
color:#fff;    
}
.icon-circle-80:hover a{
color:#fff;    
}
</style>

<div class="container">
<div class="row">
<div class="col-12 py-5 text-center d-flex justify-content-center">
<div class="icon-circle-80 d-flex justify-content-center align-items-center">
<a href=""><i class="lni lni-facebook-filled"></i></a>
</div>
<div class="icon-circle-80 d-flex justify-content-center align-items-center">
<a href=""><i class="lni lni-youtube"></i></a>
</div>
<div class="icon-circle-80 d-flex justify-content-center align-items-center">
<a href=""><i class="lni lni-twitter-filled"></i></a>
</div>
<div class="icon-circle-80 d-flex justify-content-center align-items-center">
<a href=""><i class="lni lni-instagram-filled"></i></a>
</div>
<div class="icon-circle-80 d-flex justify-content-center align-items-center">
<a href=""><i class="lni lni-pinterest"></i></a>
</div>
</div>
</div>
</div>


</body>
</html>
Spread the love

Related Posts

Begin typing your search term above and press enter to search. Press ESC to cancel.

Back To Top