Detail Footer Card Design using HTML & CSS

                                                                                





















































Hello Developers, we are excited to introduce a sleek and versatile profile card snippet, meticulously designed with HTML and CSS. This profile card is perfect for showcasing individual profiles, whether for team members, clients, or personal use. Each card includes a photo, name, title, a brief bio, and contact information, providing a comprehensive snapshot of the individual. The profile card snippet is fully responsive, ensuring it looks stunning on any device, from desktops to smartphones. The layout is clean and modern, with well-organized sections that effectively highlight the profile details. Interactive elements, such as hover effects, enhance user engagement, making the cards more dynamic and captivating. Additionally, social media icons and links to professional profiles like GitHub and LinkedIn can be included, allowing users to connect with the individual across various platforms. Incorporating this HTML and CSS profile card snippet into your website not only enhances its visual appeal but also adds a professional touch. This snippet showcases your attention to detail and commitment to providing a rich user experience. Whether you are displaying your own profile, highlighting team members, or presenting clients, this stylish and functional card design will help you present individuals in an engaging and professional manner.

How to make Detail Footer 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>Detail Footer Using HTML & CSS</title> <meta name="description" content="Detail Footer Using HTML & CSS. Made by learningrobo.com"> <meta name="author" content="learningrobo.com"> <meta name="keywords" content="form,responsive,learningrobo.com,html & css projects,project,introduction"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="icon" type=image/x-icon href="#"> <link rel="stylesheet" href="style.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=Jost:wght@300&display=swap" rel="stylesheet"> </head> <body> <!--Hello Future Developer Thanks for Using learningrobo.com, Share & Support us--> <div class="container"> <div class="box"> <div class="con1"> <div class="sec1"> <div class="c1"> <span>Want to Create something <br>together?</span> <p><a href="#">Get in touch</a></p> </div> <div class="c2"> <span>Help us make cool things!</span> <p><a href="#">Check our open positions</a></p> </div> </div> <div class="sec2"> <div class="c3"> <p>Main Office</p> <span>Annankatu 14, 2nd. <br>IND-000345 Assam</span> </div> <div class="c4"> <p>Sub Branch Office</p> <span>Palace Banway 2 <br>USA-003457 Los</span> </div> </div> <div class="sec3"> <div class="c5"> <span>Keep up with news from us</span> <form action="#" method="post"> <input type="email" name="email" id="email"><br> <div class="agree"> <input type="checkbox" name="tick" id="tick"> <p>I give my password that my personal information can be collected and used according to the <a href="#">Privacy Policy</a></p> </div> <button type="submit">Yes Proceed</button> </form> </div> </div> </div> <div class="con2"> <div class="f1"> <img src="https://pacificcreation.in/wp-content/uploads/2023/08/Pacificcreation-web-logo-header.png" alt="your logo"> </div> <div class="f2"> <p><a href="#">About</a></p> <p><a href="#">Work</a></p> <p><a href="#">Blog</a></p> <p><a href="#">Carrers</a></p> <p><a href="#">Contact</a></p> </div> <div class="f3"> <i class="fa-brands fa-facebook-f fa-xl" style="color: #ffffff;"></i> <i class="fa-brands fa-twitter fa-xl" style="color: #ffffff;"></i> <i class="fa-brands fa-instagram fa-xl" style="color: #ffffff;"></i> <i class="fa-brands fa-linkedin-in fa-xl" style="color: #ffffff;"></i> <i class="fa-solid fa-globe fa-xl" style="color: #ffffff;"></i> </div> </div> </div> <div class="credit">Made with<span>❤ </span>by<a href="https://www.learningrobo.com/"> learningrobo</a></div> </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;
}
body{
    font-family: 'Jost', sans-serif;
    margin: 0%;
}
.container{
    height: 100vh;
    background-color: #FFFBF5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.box{
    width: 95vw;
    height: 85vh;
    background-color: #7743DB;
    display: flex;
    flex-direction: column;
}
.con1{
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: row;
}
.sec1{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}
.c1{
    width: 90%;
    height: 40%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.c2{
    width: 90%;
    height: 40%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
span{
    color: white;
    font-weight: bolder;
    font-size: 25px;
}
p{
    margin: 0%;
    color: #c0c0c0;
    font-size: 18px;
    font-weight: bold;
}
a{
    color: #c0c0c0;
}
.sec2{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.c3{
    width: 90%;
    height: 40%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.c4{
    width: 90%;
    height: 40%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.sec3{
    width: 40%;
    display: flex;
    align-items: center;
}
.c5{
    width: 90%;
    height: 80%;
} 
form{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
input[type="email"]{
    width: 80%;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid #FFFBF5;
    font-size: 18px;
    color: white;
    margin-top: 40px;
}
.agree{
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 15px;
    align-items: center;
}
input[type="checkbox"]{
    width: 30px;
    height: 30px;
}
.agree p{
    font-size: 16px;
    color: #FFFBF5;
    letter-spacing: 1px;
}
.agree a{
    color: #c0c0c0;
}
button{
    width: 40%;
    padding: 15px;
    background-color: #FFFBF5;
    outline: none;
    border: none;
    border-radius: 2px;
    color: #7743DB;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}
button:hover{
    color: #7f3bff;
}
.con2{
    width: 100%;
    height: 25vh;
    display: flex;
    flex-direction: row;
}
.f1{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
img{
    width: 80%;
}
.f2{
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
}
.f2 a{
    text-decoration: none;
}
a:hover{
    color: #FFFBF5;
}
.f3{
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 25px;
}
.credit a {
    text-decoration: none;
    color: black;
    font-weight: 800;
}
.credit{
    color: black;
    text-align: center;
    margin-top: 10px;
    font-family: Verdana,Geneva,Tahoma,sans-serif;
}
.credit span{
    color:tomato;
    font-size:20px;
}
@media screen and (max-width:1024px){
    .container{
        height: fit-content;
    }
    .box{
        height: fit-content;
    }
    .con1{
        height: fit-content;
    }
    .sec1,.sec2,.sec3{
        height: fit-content;
    }
    .con2{
        height: fit-content;
    }
    .f1,.f2,.f3{
        height: fit-content;
    }
}
@media screen and (max-width:630px){
    .container{
        height: fit-content;
    }
    .box{
        height: fit-content;
        width: 90%;
        row-gap: 40px;
    }
    .con1{
        width: 100%;
        height: fit-content;
        flex-direction: column;
        row-gap: 40px;
    }
    .sec1,.sec2,.sec3{
        width: 100%;
        height: fit-content;
        row-gap: 40px;
        margin-left: 10px;
    }
    .c1,.c2,.c3,.c4,.c5{
        width: 100%;
    }
    .con2{
        width: 100%;
        height: fit-content;
        flex-direction: column;
        row-gap: 60px;
    }
    .f1,.f2,.f3{
        width: 100%;
        height: fit-content;
    }
    .f2{
        flex-direction: column;
        row-gap: 20px;
    }
    .f3{
        margin-bottom: 40px;
    }
}
We hope you would like this Detail Footer Card Design using HTML and CSS.

Thank you for reading our blog. If you face any problem in Creating a Detail Footer 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

إرسال تعليق

Thank you
Learning robo team

Post a Comment (0)

أحدث أقدم
Learning Robo says...
code copied
Welcome