Teams Card Component
560 ViewsFreeFrontend.dev
This code snippet makes it easy to create a section on your website to showcase the people who make up your team. Each card includes a photo, name, and job title of each team member. It’s a great way to personalize your website and give visitors a glimpse into the people behind your brand.
<section class="py-5">
<div class="container">
<div class="row justify-content-center text-center mb-2 mb-lg-4">
<div class="col-12 col-lg-8 col-xxl-7 text-center mx-auto">
<span class="text-muted">Our Team</span>
<h2 class="display-5 fw-bold">Meet the Team</h2>
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Soluta harum ipsum venenatis metus sem veniam eveniet aperiam suscipit.</p>
</div>
</div>
<div class="row">
<div class="col-md-4 mb-lg-0 mb-4">
<div class="card text-white border-0 justify-content-end position-relative">
<img class="img-fluid" src="https://freefrontend.dev/assets/square.png">
<div class="position-absolute bottom-0 w-100 p-2 p-lg-4 bg-dark" style="--bs-bg-opacity: .3;">
<h5 class="fw-bold">John Doe</h5>
<div>
Programmer
</div>
</div>
</div>
</div>
<div class="col-md-4 mb-lg-0 mb-4">
<div class="card text-white border-0 justify-content-end position-relative">
<img class="img-fluid" src="https://freefrontend.dev/assets/square.png">
<div class="position-absolute bottom-0 w-100 p-2 p-lg-4 bg-dark" style="--bs-bg-opacity: .3;">
<h5 class="fw-bold">John Doe</h5>
<div>
Graphic Designer
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card text-white border-0 justify-content-end position-relative">
<img class="img-fluid" src="https://freefrontend.dev/assets/square.png">
<div class="position-absolute bottom-0 w-100 p-2 p-lg-4 bg-dark" style="--bs-bg-opacity: .3;">
<h5 class="fw-bold">John Doe</h5>
<div>
HR Manager
</div>
</div>
</div>
</div>
</div>
</div>
</section>





Share
Like what you see? Share this with your friends!
Or copy link: