Footer Card Design using HTML and CSS

                                                                                    



























Hello Developers, we present a sleek and functional footer design snippet, crafted meticulously with HTML and CSS. This footer is designed to enhance the overall aesthetic of your website while providing essential information and navigation options. It includes sections for contact information, social media links, quick links to important pages, and a brief copyright statement. The footer is fully responsive, ensuring that it adapts seamlessly to various screen sizes, from desktops to mobile devices. The layout is clean and well-organized, with distinct sections that allow users to easily find the information they need. The contact information section includes your address, phone number, and email, providing visitors with multiple ways to get in touch. The social media links are displayed with recognizable icons, encouraging users to connect with you on different platforms. Incorporating this HTML and CSS footer snippet into your website will not only improve navigation but also demonstrate your attention to detail and commitment to providing a comprehensive user experience. The footer’s design is minimalistic yet stylish, making it a perfect complement to any website theme. Enhance your website’s functionality and professionalism with this elegant footer design, showcasing your dedication to quality web development.

How to make 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>Responsive footer card Using HTML & CSS</title> <meta name="description" content="Responsive footer 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,footer 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"> <div class="left"> <span id="ready">Ready for another project?</span> <span id="start">Lets Get Started!!</span> </div> <div class="right"> <button><span>Contact us<ion-icon name="earth-outline"></ion-icon></span></button> </div> </div> <div class="d2"> <div class="sub1"> <span id="name">COMPANY NAME</span> <span id="content">© 2023</span> </div> <div class="sub1"> <span id="head">Dealers</span> <span id="content">Suppliers</span> <span id="content">Buyers</span> </div> <div class="sub1"> <span id="head">Company</span> <span id="content">About us</span> <span id="content">Careers</span> <span id="content">Our Contacts</span> </div> <div class="sub1"> <span id="head">Other Informations</span> <span id="content">Terms & Conditions</span> <span id="content">Privacy Policy</span> </div> <div class="sub2"> <span id="head">Follow us on</span> <div class="logos"> <div class="cir"><ion-icon name="logo-facebook"></ion-icon></div> <div class="cir"><ion-icon name="logo-twitter"></ion-icon></div> <div class="cir"><ion-icon name="logo-instagram"></ion-icon></div> <div class="cir"><ion-icon name="logo-linkedin"></ion-icon></div> <div class="cir"><ion-icon name="mail-outline"></ion-icon></div> </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;
    margin: 0;
    padding: 0;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: end;
    align-items: end;
}
.p1{
    height: 50vh;
    width: 100%;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    border-radius: 10px;
}
.d1{
    height: 100px;
    width: 90%;
    background-color: white;
    translate: 0  -29px;
    display: flex;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.left{
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#ready{
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    margin-left: 20px;
    color: rgb(153, 153, 245);
}
#start{
    font-size: .9em;
    font-weight: 500;
    margin-left: 20px;
}
.right{
    height: 100%;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.right span ion-icon{
    translate: 10px 2px;
    font-size: 1em;
}
button{
    height: 40px;
    width: 150px;
    border-radius: 50px;
    border: none;
    background-color:  rgb(153, 153, 245);
    color: aliceblue;
    cursor: pointer;
    transition: all .4s;
}
button span{
    font-weight: 600;
}
button:hover{
    background-color: rgb(100, 100, 248);
}
.d2{
    height: 50%;
    width: 100%;
    color: aliceblue;
    display: flex;
}
.sub1{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 18%;
}
.sub1 span{
    margin-bottom: 10px;
}
.sub2{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 28%;
}
.cir{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    justify-content: center;
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
    background-color: rgb(79, 70, 251);
    font-size: 1.1em;
    margin-top: 20px;
    cursor: pointer;
    transition: all .4s;
}
.cir:hover{
    transform: scale(1.1);
    box-shadow: rgba(255, 255, 255, 0.3) 0px 5px 10px, rgba(254, 253, 253, 0.22) 0px 3px 7px;
}
.logos{
    display: flex;
    justify-content: space-evenly;
    height: 80%;
    width: 100%;
    display: flex;
}
#content{
    font-size: .8em;
    font-family: 800;
    color: aliceblue;
    cursor: pointer;
    transition: all .4s;
}
#content:hover{
    transform: scale(1.1);
    color: rgb(110, 110, 110);
}
#head{
    color:rgb(161, 161, 243);
    font-size: 1em;
    font-weight: 600;
}
#name{
    color:rgb(161, 161, 243);
    font-size: 1.1em;
    font-weight: 800;
}
@media screen and (max-width:790px){
    .container{
        height: auto;
        width: auto;
        align-items: end;
        justify-content: end;
        display: flex;
    }
    .p1{
        height: 650px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .d1{
        height: 100px;
        width: 90%;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        translate: 0;
    }
    .d2{
        flex-direction: column;
        height: auto;
        width: 100%;
        align-items: center;
    }
    .sub1,.sub2{
        height: auto;
        width: 100%;
        margin-top: 20px;
    }
    .sub2{
        margin-bottom: 30px;
    }
}

@media screen and (max-width:620px){
    .d1{
        height: 150px;

    }
    .right {
        height: auto;
        width: auto;
    }
}
.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 Footer Card Design using HTML and CSS.

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

Post a Comment

Thank you
Learning robo team

Post a Comment (0)

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