The "CSS3 Amazing Team Cards 2 Snippet" refers to a pre-written code snippet using HTML and CSS3 that allows you to easily create visually appealing and interactive team member cards on your website.
These cards typically include:
Member photo or avatar: Displaying a picture of each team member adds a personal touch.
Name and title: Clearly identifying each member's role and expertise.
Social media links: Allowing visitors to connect with team members on their preferred platforms.
Hover effects: Adding subtle animations or hover effects can enhance the user experience and make the cards more engaging.
Here are some key features of CSS3 Amazing Team Cards Snippets:
Modern design: Utilizing CSS3 properties like box-shadow, border-radius, and transitions creates a sleek and contemporary look.
Responsiveness: The code is often designed to adapt to different screen sizes, ensuring a good user experience on all devices.
Customization: You can usually customize the colors, fonts, and layouts to match your website's overall branding.
Ease of use: These snippets are often designed to be easily integrated into existing websites, saving you time and effort.


HTML Code
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<div class="container">
<div class="card">
<div class="content">
<div class="img-container">
<img src="https://i.pinimg.com/564x/46/5d/3b/465d3b7e9d21f5237e9760f5551b6a6a.jpg" class="mask" alt=""><!-- Change This img with yours -->
</div>
<h2>Team Member</h2>
<h3>Job Title</h3>
<div class="social">
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="card">
<div class="content">
<div class="img-container">
<img src="https://i.pinimg.com/736x/e8/27/ef/e827efb3150636556742c73274636ba6.jpg" class="mask" alt=""><!-- Change This img with yours -->
</div>
<h2>Team Member</h2>
<h3>Job Title</h3>
<div class="social">
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="card">
<div class="content">
<div class="img-container">
<img src="https://i.pinimg.com/736x/ef/4c/b2/ef4cb2e669da417141bb54866b51f281.jpg" class="mask" alt=""><!-- Change This img with yours -->
</div>
<h2>Team Member</h2>
<h3>Job Title</h3>
<div class="social">
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
CSS Code
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: rgb(225, 222, 222);
}
.container {
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
flex-wrap: wrap;
padding: 40px 0px;
}
.card {
position: relative;
height: 440px;
width: 320px;
margin: 30px;
background-image: url('https://www.wavypoint.com/assets/files/2024-05-31/1717190955-330607-2222.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.card .content {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 20px;
font-family: Georgia, 'Times New Roman', Times, serif;
color: #E1DEDE;
}
.card .content .img-container {
position: relative;
width: 100%;
height: 220px;
left: 10px;
}
.card .content .img-container .mask {
width: 100%;
height: 100%;
object-fit: cover;
-webkit-mask-image:url('https://www.wavypoint.com/assets/files/2024-05-31/1717191007-923066-366.png');
-webkit-mask-position:center center;
-webkit-mask-repeat:no-repeat;
-webkit-mask-size:contain;
mask-image:url('https://www.wavypoint.com/assets/files/2024-05-31/1717191007-923066-366.png');
mask-position:center center;
mask-repeat:no-repeat;
mask-size:contain;
}
.card .content h2 {
margin-top: 20px;
}
.card .content .social {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.card .content .social a {
display: block;
padding: 10px;
margin: 10px;
background-color: #FF9600;
color: white;
font-size: 1.5em;
transition: 0.5s;
}
.card .content .social a:hover{
transform: scale(1.5);
}