HTML code
This is the html code used to create this bootstrap snippet, You can copy and paste the following html code inside a page with bootstrap 4.4.1 included, to get the result that you can see in the preview selection
Download<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<div class="team-area sp">
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-4 col-lg-3 single-team">
<div class="inner">
<div class="team-img">
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="Member Photo">
</div>
<div class="team-content">
<h4>Virgie Perry</h4>
<h5>Athletic Trainer</h5>
<div class="team-social">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3 single-team">
<div class="inner">
<div class="team-img">
<img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="Member Photo">
</div>
<div class="team-content">
<h4>Virgie Perry</h4>
<h5>Athletic Trainer</h5>
<div class="team-social">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3 single-team">
<div class="inner">
<div class="team-img">
<img src="https://bootdey.com/img/Content/avatar/avatar3.png" alt="Member Photo">
</div>
<div class="team-content">
<h4>Virgie Perry</h4>
<h5>Athletic Trainer</h5>
<div class="team-social">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3 single-team">
<div class="inner">
<div class="team-img">
<img src="https://bootdey.com/img/Content/avatar/avatar4.png" alt="Member Photo">
</div>
<div class="team-content">
<h4>Virgie Perry</h4>
<h5>Athletic Trainer</h5>
<div class="team-social">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3 single-team">
<div class="inner">
<div class="team-img">
<img src="https://bootdey.com/img/Content/avatar/avatar5.png" alt="Member Photo">
</div>
<div class="team-content">
<h4>Virgie Perry</h4>
<h5>Athletic Trainer</h5>
<div class="team-social">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3 single-team">
<div class="inner">
<div class="team-img">
<img src="https://bootdey.com/img/Content/avatar/avatar6.png" alt="Member Photo">
</div>
<div class="team-content">
<h4>Virgie Perry</h4>
<h5>Athletic Trainer</h5>
<div class="team-social">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3 single-team">
<div class="inner">
<div class="team-img">
<img src="https://bootdey.com/img/Content/avatar/avatar7.png" alt="Member Photo">
</div>
<div class="team-content">
<h4>Virgie Perry</h4>
<h5>Athletic Trainer</h5>
<div class="team-social">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-3 single-team">
<div class="inner">
<div class="team-img">
<img src="https://bootdey.com/img/Content/avatar/avatar8.png" alt="Member Photo">
</div>
<div class="team-content">
<h4>Virgie Perry</h4>
<h5>Athletic Trainer</h5>
<div class="team-social">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-linkedin"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
CSS code
This is the css code used to create this bootstrap snippet, You can copy and paste the following css code inside a page with bootstrap 4.4.1 included, to get the result that you can see in the preview selection
Downloadbody{margin-top:20px;}
.single-team .inner {
text-align: center;
margin-bottom: 35px;
border: 1px solid #e5eaf0;
padding: 5px 5px 0px;
}
.single-team .inner .team-img {
position: relative;
}
.single-team .inner .team-img img {
width: 100%;
}
.single-team .inner .team-img::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0;
}
.single-team .inner .team-img:hover::after {
opacity: 0.4;
}
.single-team .inner .team-content {
padding: 22px 0px 0px;
}
.single-team .inner .team-content h4 {
font-size: 18px;
font-weight: 400;
}
.single-team .inner .team-content h5 {
font-weight: 300;
font-size: 16px;
letter-spacing: 0.5px;
color: #7d91aa;
}
.single-team .inner .team-content a {
display: inline-block;
padding: 2px;
margin: 0 3px;
font-size: 16px;
}
.team-social {
background: #f3f6fa;
width: 50%;
padding-top: 4px;
margin: auto;
border-radius: 15px 15px 0px 0px;
margin-top: 17px;
}
About this bootstrap example/template
This example/template, single team list, was published on Mar 25th 2020, 08:38 by Bootdey Admin and it is free.
We hope you will enjoy this awesome snippet and stay tuned for the latest updates, bootdey snippets are already used in thousands of blogs, websites and projects. We believe it will save your precious time and gives trendy look to your next web project.
We always try to offer the best beautiful and responsive source of Bootstrap code examples and components.
This code example currectly have 7.7K views, Using this bootstrap snippet you have the following benefits:
Bootstrap 4.4.1
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'>
<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js'></script>
This code example is based on bootstrap 4.4.1 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