"Our Team Section Design With Bootstrap"
Bootstrap 4.1.1 Snippet by Nabed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<title>Our Team Section</title>
</head>
<body>
<!-- OurTeam Start -->
<section class="team">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="team_top text-center">
<h1 class="mb-2">Our Team</h1>
<p>Lorem ipsum madolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor coli incidit labore lorem ipsum amet madolor sit amet.</p>
</div>
</div>
</div>
<!-- 2nd row -->
<div class="row">
<!-- single member -->
<div class="col-lg-3 col-md-6">
<div class="member text-center">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*OurTeam Start*/
.team{
padding: 100px 0px;
background-image: url(https://i.postimg.cc/pVhWpJzL/background.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
}
.team_top h1{
text-transform: uppercase;
color: #00cdcd;
font-size: 60px;
font-weight: 700;
}
.team_top p{
font-size: 18px;
font-weight: 500;
max-width: 750px;
margin: 0 auto;
}
.member{
position: relative;
margin-top: 70px;
margin-bottom: 70px;
background-color: #fff;
padding: 20px;
}
.img img{
width: 130px;
border-radius: 50%;
}
.m_text h3{
font-weight: 800;
font-size: 22px;
margin-top: 20px;
color: #00cdcd;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: