Bootstrap snippet and html example. Our awesome Team

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.5.0 included, to get the result that you can see in the preview selection

<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

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

Similar snippets

Bootstrap example and template. bs4 team list

bs4 team list

Bootstrap example and template. bs4 team with zoom effect

bs4 team with zoom effect

Bootstrap example and template. team tiles

team tiles

Bootstrap example and template. bs4 simple team list

bs4 simple team list

Bootstrap example and template. bs5 dark footer

bs5 dark footer

Bootstrap example and template. General Search Results

General Search Results

Bootstrap example and template. bs4 card widget

bs4 card widget

Bootstrap example and template. bs4 Horizontal timeline

bs4 Horizontal timeline

Bootstrap example and template. Our awesome Team

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