HTML code
This is the html code used to create this bootstrap snippet, You can copy, paste, change, customize and run the following HTML code to get a result like the one shown in the preview selection
<link rel="stylesheet" href="https://daneden.github.io/animate.css/animate.min.css" />
<div class="team-section">
    <div class="row">
        <div class="large-3 columns text-center wow  bounceIn animated">
            <img src="http://bootdey.com/img/Content/avatar/avatar1.png" alt="">
            <h3>John doe</h3>
            <p>
               Lorem ipsum dolor sit amet, illum fastidii dissentias quo ne. Sea ne sint animal iisque, nam an soluta sensibus.
            </p>
        </div>
          <div class="large-3 columns text-center wow  bounceIn animated">
            <img src="http://bootdey.com/img/Content/avatar/avatar6.png" alt="">
            <h3>John doe</h3>
            <p>
               Lorem ipsum dolor sit amet, illum fastidii dissentias quo ne. Sea ne sint animal iisque, nam an soluta sensibus.
            </p>
        </div>
          <div class="large-3 columns text-center wow  bounceIn animated">
            <img src="http://bootdey.com/img/Content/avatar/avatar4.png" alt="">
            <h3>John doe</h3>
            <p>
               Lorem ipsum dolor sit amet, illum fastidii dissentias quo ne. Sea ne sint animal iisque, nam an soluta sensibus.
            </p>
        </div>
          <div class="large-3 columns text-center wow  bounceIn animated">
            <img src="http://bootdey.com/img/Content/avatar/avatar7.png" alt="">
            <h3>John doe</h3>
            <p>
               Lorem ipsum dolor sit amet, illum fastidii dissentias quo ne. Sea ne sint animal iisque, nam an soluta sensibus.
            </p>
        </div>
    </div>
    <div class="row">
        <div class="large-3 columns text-center wow  bounceIn animated">
            <img src="http://bootdey.com/img/Content/avatar/avatar7.png" alt="">
            <h3>John doe</h3>
            <p>
               Lorem ipsum dolor sit amet, illum fastidii dissentias quo ne. Sea ne sint animal iisque, nam an soluta sensibus.
            </p>
        </div>
          <div class="large-3 columns text-center wow  bounceIn animated">
            <img src="http://bootdey.com/img/Content/avatar/avatar4.png" alt="">
            <h3>John doe</h3>
            <p>
               Lorem ipsum dolor sit amet, illum fastidii dissentias quo ne. Sea ne sint animal iisque, nam an soluta sensibus.
            </p>
        </div>
          <div class="large-3 columns text-center wow  bounceIn animated">
            <img src="http://bootdey.com/img/Content/avatar/avatar6.png" alt="">
            <h3>John doe</h3>
            <p>
               Lorem ipsum dolor sit amet, illum fastidii dissentias quo ne. Sea ne sint animal iisque, nam an soluta sensibus.
            </p>
        </div>
          <div class="large-3 columns text-center wow  bounceIn animated">
            <img src="http://bootdey.com/img/Content/avatar/avatar1.png" alt="">
            <h3>John doe</h3>
            <p>
               Lorem ipsum dolor sit amet, illum fastidii dissentias quo ne. Sea ne sint animal iisque, nam an soluta sensibus.
            </p>
        </div>
    </div>
</div>CSS code
This is the css code used to create this bootstrap snippet, You can copy, paste, change, customize and run the following CSS code to get a result Like the one shown in the preview selection
body{
    margin-top:20px;
}
.team-section{
    padding: 100px 0;
    background-color: #eee;
}
.team-section img{
    margin-bottom: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 2px 1px 3px rgba(0,0,0,0.3);
    -webkit-box-shadow: 2px 1px 3px rgba(0,0,0,0.3);
}
.team-section h3{
    font-size: 15px;
    color:#000;
    font-weight:bold;
}
.team-section p{
    margin-bottom: 25px;
}