Footer UI using HTML and CSS































Hello Developers, We provide you with a dynamic and eye-catching Page footer HTML that presents your information to you at a glance. This Page footer HTML snippet has been designed with accuracy using HTML and CSS, and we have made a footer where all important links can be added. You can create an eye-catching and informative footer with a good HTML & CSS design. The footer usually contains information such as your logo, social media information, links to important pages, links for company information and some other useful links. A well-designed footer enhances the overall look & feel of your website. It also provides a smooth & informative end to the user's browsing experience. This page footer html snippet is fully responsive, so it can be displayed on any device, whether it's a desktop, laptop, tablet or smartphone. By using this HTML & CSS Page footer HTML Snippet, you're not only sharing information, but you're also showing your dedication to professionalism & contemporary web design. Show off & interact with the world. Note: We have coded CSS in a separate file and linked it to the HTML file to create an HTML snippet for the footer of the page.

How to make Footer UI 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> <head> <title>Footer UI design - learningrobo</title> <meta name="description" content="Footer UI design - learningrobo"> <meta name="author" content="learningrobo.com"> <meta name="keywords" content="footer,responsive,learningrobo.com,html & css projects"> <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=Red+Hat+Display: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="credit">Made with <span>❤ </span>by <a href="https://www.learningrobo.com/"> learningrobo</a></div> <div class="section1"> <div class="head1"> <div class="in1"> <i class="fa-solid fa-shield-halved fa-2xl" style="color: #ffffff;"></i> </div> <div class="in2"> <p>100% SECURE</p> <p>CHECKOUT</p> </div> </div> <div class="head2"> <div class="in1"> <i class="fa-solid fa-plane-departure fa-2xl" style="color: #ffffff;"></i> </div> <div class="in2"> <p>SHIPPING TO OVER 70</p> <p>cOUNTRIES</p> </div> </div> <div class="head3"> <div class="in1"> <i class="fa-solid fa-headphones fa-2xl" style="color: #ffffff;"></i> </div> <div class="in2"> <p>OUTSTANDING</p> <p>SUPPORT</p> </div> </div> </div> <div class="section2"> <div class="content1"> <div class="company"> <i class="fa-brands fa-slack fa-2xl" style="color: #000000;"></i> <p>YOUR LOGO</p> </div> </div> <div class="content2"> <h5>Find us in social media</h5> <div class="logo"> <i class="fa-brands fa-instagram fa-xl" style="color: #000000;"></i> <i class="fa-brands fa-facebook-f fa-xl" style="color: #000000;"></i> <i class="fa-brands fa-twitter fa-xl" style="color: #000000;"></i> <i class="fa-brands fa-linkedin-in fa-xl" style="color: #000000;"></i> </div> </div> <div class="content3"> <h5>COMMUNITY</h5> <p><a href="#">Blog</a></p> <p><a href="#">Community</a></p> <p><a href="#">Ideas</a></p> <p><a href="#">Developers</a></p> </div> <div class="content4"> <h5>COMPANY</h5> <p><a href="#">About us</a></p> <p><a href="#">Team</a></p> <p><a href="#">Where to Buy</a></p> <p><a href="#">Reseliers</a></p> <p><a href="#">Influencers</a></p> <p><a href="#">Affilates</a></p> <p><a href="#">Media</a></p> </div> <div class="content5"> <h5>USEFUL LINKS</h5> <p><a href="#">Warranty</a></p> <p><a href="#">Product Declarations</a></p> <p><a href="#">Terms of Use</a></p> <p><a href="#">Privacy Policy</a></p> <p><a href="#">Cookie Policy</a></p> <p><a href="#">Cookie Settings</a></p> </div> </div> </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: 'Red Hat Display', sans-serif;
    margin: 0%;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    width: 100%;
    height: 100vh;
    background-color:#ddd;
}
.box{
    width: 100%;
    height: 85vh;
    display: flex;
    flex-direction: column;
}
.section1{
    width: 100%;
    height: 20vh;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.head1{
    width: 33.3%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}
.head2{
    width: 33.3%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}
.head3{
    width: 33.3%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}
.in1{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.in2{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.in2 p{
    margin: 0%;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}
.section2{
    width: 100%;
    height: 65vh;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.content1{
    width: 20%;
    height: 65vh;
    display: flex;
    column-gap: 10px;
}
.company{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 30px;
}
.content2{
    width: 20%;
    height: 65vh;
    display: flex;
    flex-direction: column;
}
.logo{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: left;
    column-gap: 40px;
    margin-left: 10px;
    margin-top: 30px;
}
.content3{
    width: 20%;
    height: 65vh;
    display: flex;
    flex-direction: column;
}
.content4{
    width: 20%;
    height: 65vh;
    display: flex;
    flex-direction: column;
}
.content5{
    width: 20%;
    height: 65vh;
    display: flex;
    flex-direction: column;
}
a{
    text-decoration: none;
    color: grey;
}
h5{
    margin: 20px 10px;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: bold;
}
p{
    margin: 10px 10px;
    font-size: 18px;
    font-weight: 600;
}
@media screen and (max-width:1024px){
    .box{
        height: fit-content;
    }
    .section1{
        height: fit-content;
    }
}
@media screen and (max-width:630px){
    .container{
        height:fit-content;
    }
    .box{
        height: fit-content;
    }
    .head1,.head2,.head3{
        width:80%;
        align-items:center;
    }
    .section1{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 60px;
    }
    .section2{
        height: fit-content;
        flex-direction: column;
    }
    .content1{
        width: 100%;
        height: max-content;
        justify-content: center;
        align-items: center;
    }
    .content2{
        width: 100%;
        height: 30vh;
        justify-content: center;
        align-items: center;
    }
    .logo{
        justify-content: center;
        align-items: center;
    }
    .content3{
        width: 100%;
        height: max-content;
        justify-content: center;
        align-items: center;
    }
    .content4{
        width: 100%;
        height: max-content;
        justify-content: center;
        align-items: center;
    }
    .content5{
        width: 100%;
        height: max-content;
        justify-content: center;
        align-items: center;
    }
}
.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;
}
We hope you would like this Footer UI using html and css.

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