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.5.0 included, to get the result that you can see in the preview selection
Download<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<section id="team" class="team section">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title">
<h2>Our awesome Team</h2>
<p>Business consulting excepteur sint occaecat cupidatat consulting non proident, sunt in culpa qui officia deserunt laborum market. </p>
</div>
</div>
</div>
<div class="row">
<!-- Single Team -->
<div class="col-lg-3 col-md-6 col-12">
<div class="single-team">
<!-- Image -->
<div class="image">
<img src="https://bootdey.com/img/Content/avatar/avatar1.png" alt="#">
</div>
<!-- End Image -->
<div class="info-head">
<!-- Info Box -->
<div class="info-box">
<h4 class="name"><a href="#">Dahlia Moore</a></h4>
<span class="designation">Senior Manager</span>
</div>
<!-- End Info Box -->
<!-- Social -->
<div class="social-links">
<ul class="social">
<li><a href="#"><i class="fa fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-behance"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End Social -->
</div>
</div>
</div>
<!-- End Single Team -->
<div class="col-lg-3 col-md-6 col-12">
<div class="single-team">
<!-- Image -->
<div class="image">
<img src="https://bootdey.com/img/Content/avatar/avatar2.png" alt="#">
</div>
<!-- End Image -->
<div class="info-head">
<!-- Info Box -->
<div class="info-box">
<h4 class="name"><a href="#">Jhone digo</a></h4>
<span class="designation">Markeitng</span>
</div>
<!-- End Info Box -->
<!-- Social -->
<div class="social-links">
<ul class="social">
<li><a href="#"><i class="fa fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-behance"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End Social -->
</div>
</div>
</div>
<!-- End Single Team -->
<div class="col-lg-3 col-md-6 col-12">
<div class="single-team">
<!-- Image -->
<div class="image">
<img src="https://bootdey.com/img/Content/avatar/avatar8.png" alt="#">
</div>
<!-- End Image -->
<div class="info-head">
<!-- Info Box -->
<div class="info-box">
<h4 class="name"><a href="#">Zara tingo</a></h4>
<span class="designation">Web Developer</span>
</div>
<!-- End Info Box -->
<!-- Social -->
<div class="social-links">
<ul class="social">
<li><a href="#"><i class="fa fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-behance"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End Social -->
</div>
</div>
</div>
<!-- End Single Team -->
<div class="col-lg-3 col-md-6 col-12">
<div class="single-team">
<!-- Image -->
<div class="image">
<img src="https://bootdey.com/img/Content/avatar/avatar7.png" alt="#">
</div>
<!-- End Image -->
<div class="info-head">
<!-- Info Box -->
<div class="info-box">
<h4 class="name"><a href="#">David Zone</a></h4>
<span class="designation">SEO Expert</span>
</div>
<!-- End Info Box -->
<!-- Social -->
<div class="social-links">
<ul class="social">
<li><a href="#"><i class="fa fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-behance"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- End Social -->
</div>
</div>
</div>
<!-- End Single Team -->
</div>
</div>
</section>
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.5.0 included, to get the result that you can see in the preview selection
Downloadbody{margin-top:20px;}
.team .title-line{
margin-bottom:40px;
}
.team .single-team {
margin-top: 30px;
position:relative;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
transition: all 500ms ease;
display: inline-block;
overflow:hidden;
text-align:center;
}
.team .single-team .info-head {
padding: 35px 30px;
background:#F5F8FF;
position:relative;
z-index:2;
-webkit-transition:all 0.4s ease;
-moz-transition:all 0.4s ease;
transition:all 0.4s ease;
}
.team .single-team .info-head:before{
position:absolute;
content:"";
left:0;
top:0;
height:0%;
width:100%;
background:#006DFE;
z-index:-1;
opacity:0;
visibility:hidden;
-webkit-transition:all 0.4s ease;
-moz-transition:all 0.4s ease;
transition:all 0.4s ease;
}
.team .single-team:hover .info-head:before{
opacity:1;
visibility:visible;
height:100%;
}
.team .single-team:hover .info-head{
border-color:transparent;
}
.team .single-team .image img{
height:100%;
width:100%;
}
.team .single-team .info-box {
text-align:center;
}
.team .single-team .info-box .name {
display: block;
font-size: 17px;
color: #333;
margin-bottom: 3px;
text-transform:capitalize;
}
.team .single-team:hover .info-box .name{
color:#fff;
}
.team .single-team .info-box .name a{
font-weight: 400;
}
.team .single-team:hover .info-box .name a{
color:#fff;
}
.team .single-team .info-box .designation{
color:#aaa;
font-size:13px;
-webkit-transition:all 0.4s ease;
-moz-transition:all 0.4s ease;
transition:all 0.4s ease;
}
.team .single-team:hover .info-box .designation{
color:#fff;
}
.team .single-team .social-links {
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
transition: all 500ms ease;
margin-top:15px;
}
.team .single-team .social-links .social li{
display:inline-block;
margin-right:15px;
}
.team .single-team .social-links .social li:last-child{
margin-right:0px;
}
.team .single-team .social-links .social li a {
color: #666;
display: block;
font-size: 14px;
}
.team .single-team:hover .social-links .social li a{
color:#fff;
}

About this bootstrap example/template
This example/template, Our awesome Team, was published on Sep 25th 2020, 11:22 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 244 views, Using this bootstrap snippet you have the following benefits:
Bootstrap 4.5.0
<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.5.0 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