Bootstrap snippet and html example. single team list

Bootstrap 4.4.1 snippet "single team list" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: team

HTML code

Clean, semantic HTML that powers this Bootstrap 4.4.1 snippet. Copy and paste it into your page (with Bootstrap loaded) to reproduce the exact layout shown in the preview.

<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

Scoped CSS that styles the component. Paste it after Bootstrap 4.4.1 to keep the design, spacing, and responsiveness consistent.

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 list with board of directors

team list with board of directors

Bootstrap example and template. bs4 team with zoom effect

bs4 team with zoom effect

Bootstrap example and template. bs5 team member details

bs5 team member details

Bootstrap example and template. team members list

team members list

Bootstrap example and template. Gradients dashboard cards

Gradients dashboard cards

Bootstrap example and template. User profile rating

User profile rating

Bootstrap example and template. Form register inside narrow jumbotron

Form register inside narrow jumbotron

Bootstrap example and template. microsoft metro tiles bootstrap

microsoft metro tiles bootstrap

FAQ

How do I use this snippet?

Include Bootstrap 4.4.1, 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 4.4.1.

Bootstrap example and template. single team list

About this bootstrap example/template

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 9.3K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.

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