Bootstrap snippet and html example. single team list

This html snippet was created to help web designers, web developers, front-end and back-end developer save time. Use it for free in your project and build your app faster, You can also download the HTML, CSS, and JS code.
Tags: team

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

<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

body{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;
}

Similar snippets

Bootstrap example and template. team members tab

team members tab

Bootstrap example and template. team user resume

team user resume

Bootstrap example and template. creative team with right content on hover

creative team with right content on hover

Bootstrap example and template. Meet our master individuals

Meet our master individuals

Bootstrap example and template. timeline with year and date

timeline with year and date

Bootstrap example and template. Shop product list

Shop product list

Bootstrap example and template. shopping cart checkout

shopping cart checkout

Bootstrap example and template. bs4 profile header card

bs4 profile header card

Bootstrap example and template. single team list

About this bootstrap example/template

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 6.6K 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