Functional Team Members Card Design using HTML and CSS

                                                                                





























Hello Developers, we are thrilled to present an attractive and functional team members card snippet, meticulously designed using HTML and CSS. This snippet enables you to showcase your team members in a visually appealing way, highlighting their roles and expertise. The team members card snippet is fully responsive, ensuring that it looks great on any device, whether it’s a desktop, tablet, or smartphone. The layout is clean and contemporary, with each card neatly organized to present the team members professionally. Interactive hover effects add a dynamic element, making the cards more engaging as users explore team details. You can also include social media icons, connecting each team member with their respective profiles to foster a sense of authenticity and connection. Incorporating this HTML and CSS team members card snippet into your website not only enhances its visual appeal but also underscores the importance of your team. It reflects your commitment to transparency and acknowledges the contributions of each team member. Showcase the talent and diversity of your team with this stylish and functional card design, adding both a professional and personal touch to your website.

How to make Functional Team Members Card Design using HTML and CSS.[Source Code]

To make this website, you would like to make two files: an HTML file, a CSS file. First, create an HTML file with the name of index.html and remember, you have to create a file with a .html extension.

<!DOCTYPE html> <html lang="en"> <head> <title>Responsive Team card Using HTML & CSS</title> <meta name="description" content="Responsive Team card Using HTML & CSSt. Made by learningrobo.com"> <meta name="author" content="learningrobo.com"> <meta name="keywords" content="responsive,learningrobo.com,html & css projects,project,Team card"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="icon" type=image/x-icon href="#"> <link rel="stylesheet" href="styles.css"> <meta charset="UTF-8"> <script src="https://kit.fontawesome.com/5d72166fb5.js" crossorigin="anonymous"></script> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300&display=swap" rel="stylesheet"> </head> <body> <!--Hello Future Developer Thanks for Using learningrobo.com, Share & Support us--> <div class="container"> <div class="p1"> <div class="d1"> <header>The Team Behind The Product</header> <div class="line"></div> </div> <div class="d2"> <div class="sub1"> <img src="https://cdn.pixabay.com/photo/2018/11/13/21/43/avatar-3814049_1280.png" alt=""> <h3>Domnic</h3> <span>Ex-Apple Engineering Head, Design Division</span> <div class="circle"><ion-icon name="logo-apple"></ion-icon></div> </div> <div class="sub2"> <img src="https://cdn.pixabay.com/photo/2018/11/13/21/43/avatar-3814049_1280.png" alt=""> <h3>Brian</h3> <span>Ex-Google Employee,Web developer,Dart User.</span> <div class="circle"><ion-icon name="logo-google"></ion-icon></div> </div> <div class="sub3"> <img src="https://cdn.pixabay.com/photo/2018/11/13/21/43/avatar-3814049_1280.png" alt=""> <h3>Nobody</h3> <span>Ex- Microsoft OS Developer, Division Head</span> <div class="circle"><ion-icon name="logo-microsoft"></ion-icon></div> </div> <div class="sub4"> <img src="https://cdn.pixabay.com/photo/2018/11/13/21/43/avatar-3814049_1280.png" alt=""> <h3>The Rock</h3> <span>Ex-Firebase Developer, Head Division</span> <div class="circle"><ion-icon name="logo-firebase"></ion-icon></div> </div> </div> </div> </div> <script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script> <script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script> <div class="credit">Made with <span>❤ </span>by<a href="https://www.learningrobo.com/"> Learningrobo</a></div> <!--Check our website Regularly For New Snippets Post--> </body> </html>
CSS provides style to an HTML page. To make the page attractive create a CSS file with the name style.css and remember that you have to make a file with a .css extension.


/** 
Hello Future Developer Thanks for Using learningrobo.com, 
Check our website Regularly For New Snippets Post.

Share & Support us
**/
*{
    box-sizing: border-box;
}
.container{
    height: 100vh;
    width:  100vw;
    background-color: aliceblue;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.p1{
    height: 89%;
    width: 85%;
    background-color: bisque;
    display: flex;
    margin: auto;
    justify-content: center;
    flex-direction: column;
}
.d1{
    height: 16%;
    width: 100%;
    background-color: aliceblue;
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
header{
    font-weight: 800;
    font-size: 2em;
}
.line{
    width: 60%;
    border: 2px solid black;
}
.d2{
    height: 84%;
    width: 100%;
    background-color: aliceblue;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.sub1,.sub2,.sub3,.sub4{
    height: 400px;
    width: 220px;
    background-color: aliceblue;
    border-radius: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;align-items: center;
    margin: auto;
    transition: all 0.2s ease-in-out;
}
.sub1 {
    background-color: black;
    color: red;
    box-shadow: -3px -3px 7px #716c6c,3px 3px 5px rgb(117, 117, 120);
}
.sub2,.sub4{
    background-color: red;
    color: white;
    box-shadow: -3px -3px 7px #f39c9c,3px 3px 5px rgb(223, 95, 95);
}
.sub3{
    box-shadow: -3px -3px 7px #ffffff,3px 3px 5px #ceced1;
}
.sub1 img,.sub2 img,.sub3 img,.sub4 img{
    height: 190px;
    width: 190px;
    border: 2px solid black;
    border-radius: 50%;
    object-fit: cover;
}
.circle{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 3px solid black;
    translate: 0 45px;
    background-color: aliceblue;
    object-fit: cover;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    transition: all 0.2s ease-in-out;
}
span{
    font-weight: 500;
    text-align: center;
}
.circle:hover{
    transform: scale(1.1);
}
.sub1:hover,.sub2:hover,.sub3:hover,.sub4:hover{
    transform: scale(1.1);
}
@media screen and (max-width:980px){
    .container{
        height: auto;
        width: auto;
    }
    .p1{
        height: auto;
        width: auto;
        flex-direction: column;
    }
    .d1{
        height: auto;
        width: auto;
    }
    .line{
        width: auto;
        height:auto;
    }
    .d2{
        flex-direction: column;
    }
    .sub1,.sub2,.sub3,.sub4{
        margin-top: 30px;
        margin-bottom: 30px;
    }
}
.credit a {
    text-decoration: none;
    color: #121212;
    font-weight: 800;
}
  
.credit {
    color: #121212;
    text-align: center;
    margin-top: 10px;
    font-family: Verdana,Geneva,Tahoma,sans-serif;
}
.credit span{
    color:#000;
    font-size:20px;
}   
We hope you would like this Functional Team Members Card Design using HTML and CSS.

Thank you for reading our blog. If you face any problem in Creating a Funtional Team Members Card Design using HTML and CSS., then contact us or comment to us. We’ll try to provide a solution to your problem as soon as possible.

Press The Key ' p ' and say ' read article ' our voice assistant read our article.
In Our older post it doesnot work we working on that.












Thank you
Learning robo team

Post a Comment

Thank you
Learning robo team

Post a Comment (0)

Previous Post Next Post
Learning Robo says...
code copied
Welcome