HTML code
Clean, semantic HTML that powers this Bootstrap 3.3.7 snippet. Copy and paste it into your page (with Bootstrap loaded) to reproduce the exact layout shown in the preview.
Download<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<div class="container">
<div class="row">
<div class="col-md-3 col-xs-6 col-xss-12">
<div class="member text-center">
<div class="member-top">
<figure>
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="Member Name">
</figure>
<div class="social-icons">
<a href="#" class="social-icon" title="Facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="social-icon" title="Twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="social-icon" title="Github"><i class="fa fa-github"></i></a>
<a href="#" class="social-icon" title="Linkedin"><i class="fa fa-linkedin"></i></a>
</div><!-- End .social-icons -->
</div><!-- End .member-top -->
<h3 class="member-title"><a href="#">John Doe</a> <small>(Co-founder)</small></h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit osam error quo.</p>
</div><!-- End .member -->
</div><!-- End .col-md-3 -->
<div class="col-md-3 col-xs-6 col-xss-12">
<div class="member text-center">
<div class="member-top">
<figure>
<img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="Member Name">
</figure>
<div class="social-icons">
<a href="#" class="social-icon" title="Facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="social-icon" title="Twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="social-icon" title="Linkedin"><i class="fa fa-linkedin"></i></a>
<a href="#" class="social-icon" title="Tumblr"><i class="fa fa-tumblr"></i></a>
<a href="#" class="social-icon" title="Flickr"><i class="fa fa-flickr"></i></a>
</div><!-- End .social-icons -->
</div><!-- End .member-top -->
<h3 class="member-title"><a href="#">John Doe</a> <small>(Developer)</small></h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit osam error quo.</p>
</div><!-- End .member -->
</div><!-- End .col-md-3 -->
<div class="clearfix visible-xs visible-sm"></div><!-- clearfix -->
<div class="col-md-3 col-xs-6 col-xss-12">
<div class="member text-center">
<div class="member-top">
<figure>
<img src="https://bootdey.com/img/Content/avatar/avatar3.png" alt="Member Name">
</figure>
<div class="social-icons">
<a href="#" class="social-icon" title="Facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="social-icon" title="Twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="social-icon" title="Github"><i class="fa fa-github"></i></a>
<a href="#" class="social-icon" title="Linkedin"><i class="fa fa-linkedin"></i></a>
<a href="#" class="social-icon" title="Tumblr"><i class="fa fa-tumblr"></i></a>
</div><!-- End .social-icons -->
</div><!-- End .member-top -->
<h3 class="member-title"><a href="#">Jane Doe</a> <small>(Developer)</small></h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit osam error quo.</p>
</div><!-- End .member -->
</div><!-- End .col-md-3 -->
<div class="col-md-3 col-xs-6 col-xss-12">
<div class="member text-center">
<div class="member-top">
<figure>
<img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="Member Name">
</figure>
<div class="social-icons">
<a href="#" class="social-icon" title="Facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="social-icon" title="Twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="social-icon" title="Github"><i class="fa fa-github"></i></a>
<a href="#" class="social-icon" title="Linkedin"><i class="fa fa-linkedin"></i></a>
<a href="#" class="social-icon" title="Flickr"><i class="fa fa-flickr"></i></a>
</div><!-- End .social-icons -->
</div><!-- End .member-top -->
<h3 class="member-title"><a href="#">John Doe</a> <small>(Developer)</small></h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit osam error quo.</p>
</div><!-- End .member -->
</div><!-- End .col-md-3 -->
</div>
</div> CSS code
Scoped CSS that styles the component. Paste it after Bootstrap 3.3.7 to keep the design, spacing, and responsiveness consistent.
Downloadbody{
margin-top:20px;
background:#f5f5f5;
}
.member {
margin-bottom: 2rem
}
.member .member-top {
position: relative;
background-color: #d7d4d4;
margin-bottom: 1.35rem;
overflow: hidden
}
.member .member-top figure {
position: relative
}
.member .member-top figure img {
display: block;
width: 100%;
height: auto
}
.member .member-top figure:after {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: #673AB7;
opacity: 0;
visibility: hidden;
transition: all .65s cubic-bezier(0.92, 0.17, 0.29, 0.93) 0s;
z-index: 50
}
.member .member-top .social-icons {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-align: stretch;
align-items: stretch;
position: absolute;
bottom: 0;
left: 0;
z-index: 99;
padding: 0;
margin: 0;
-ms-transform: translateX(-100%);
transform: translateX(-100%);
transition: all .65s cubic-bezier(0.92, 0.17, 0.29, 0.93) 0s
}
.member .member-top .social-icons label {
color: #f2f2f2;
font-weight: 400;
margin-right: 4px;
font-size: 12px
}
.member .member-top .social-icons .social-icon {
display: block;
border-radius: 0;
margin: 0;
width: 3rem;
height: 3rem;
line-height: 3rem
}
@media (min-width: 992px) and (max-width: 1199px) {
.member .member-top .social-icons .social-icon {
width: 2.7rem;
height: 2.7rem;
line-height: 2.7rem
}
}
.member .member-title {
font-size: 1.25rem;
margin-bottom: 1rem
}
.member .member-title a {
color: #212121
}
.member .member-title a:hover,
.member .member-title a:focus {
color: #673AB7
}
.member .member-title small {
display: inline;
font-size: 80%;
color: #E91E63;
font-weight: 600
}
.member .member-title:after {
content: '';
clear: both;
display: table
}
.member.text-center .member-title {
margin-bottom: 0.85rem
}
.member.text-center .member-title small {
display: block;
margin-top: 0.6rem
}
.member:hover .member-top figure:after {
visibility: visible;
opacity: 0.35
}
.member:hover .member-top .social-icons {
-ms-transform: translateX(0);
transform: translateX(0)
}
.swiper-container .member {
margin-bottom: 0
}
.swiper-container .member p:last-child {
margin-bottom: 0
}
.social-icons {
margin-bottom: 1rem
}
.social-icons:after {
content: '';
display: table;
clear: both
}
.social-icons .social-icon {
display: inline-block;
font-size: 1.1rem;
width: 2.2rem;
height: 2.2rem;
line-height: 2.2rem;
border-radius: 4px;
color: #323232;
background-color: #fff;
transition: all .65s cubic-bezier(0.92, 0.17, 0.29, 0.93) 0s;
margin: 0 0 0.25rem;
text-align: center;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1)
}
.social-icons .social-icon+.social-icon {
margin-left: 0.25rem
}
.social-icons .social-icon.circle {
border-radius: 50%
}
.social-icons .social-icon:hover,
.social-icons .social-icon:focus {
color: #fff;
background-color: #673AB7
}
.bg-white .social-icons .social-icon {
background-color: #d7d4d4
}
.bg-white .social-icons .social-icon:hover,
.bg-white .social-icons .social-icon:focus {
color: #fff;
background-color: #673AB7
}
.social-icons.circle .social-icon {
border-radius: 50%
}FAQ
How do I use this snippet?
Include Bootstrap 3.3.7, paste the HTML, add the CSS block, and include the JS (if any) to mirror the live preview.
Can I use it in commercial projects?
Yes. It’s free for personal and commercial work; check the snippets license for details.
Is it responsive?
Yes. It inherits the responsive grid and components from Bootstrap 3.3.7.
About this bootstrap example/template
This free Bootstrap 3.3.7 snippet, team members with left social icons, was published on Nov 7th 2016, 22:58 by Bootdey Admin.
Optimized for copy‑paste: clean HTML, scoped CSS, and minimal JS so you can ship production‑ready UI faster and keep designs consistent.
Mobile‑first and responsive by default. Tested across modern browsers to reduce polish time on your project.
Already trusted in 7.9K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.
Bootstrap 3.3.7
<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css'>
<script src='https://netdna.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js'></script>
This code example is based on bootstrap 3.3.7 and the grid system of this framework
Responsive
Based on bootstrap framework makes all the layouts perfectly responsive for all devices
Crossbrowser compatibility
Tested on all major browsers, it works smoothly on all of them
semantic html 5
Built on html / css3 the code quality is really amazing
Simple Integration
This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working