Why choose us section design using HTML and CSS





























Hello Developers, We offer you a dynamic and attractive "Why Choose Us" section that presents your information clearly and concisely. This "Why Choose Us" section snippet has been carefully crafted using HTML & CSS. An Why Choose Us" section in HTML & CSS is an excellent way to present information in an orderly and visually appealing way. We are pleased to share our "Why Choose Us" section with you. You can create a strong impression by placing your profile picture in the centre of the card. You can also add the services that you offer in the card. The card has a fully responsive design that allows you to display the information on a variety of devices such as desktop, laptop, tablet and smartphone. So with this HTML and CSS about me page, you are not only sharing information, but also demonstrating your commitment to professionalism and modern web design. All in all, use this innovative and creative "Why Choose Us" section to showcase yourself and connect with the world.

How to make Why choose us section 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> <head> <title>Profile Card UI design - learningrobo</title> <meta name="description" content="Profile Card UI design - learningrobo"> <meta name="author" content="learningrobo.com"> <meta name="keywords" content="profile card,responsive,learningrobo.com,html & css projects,project"> <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=Nanum+Gothic&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="root1"> <div class="sec1"> <span class="circle"> <i class="fa-solid fa-briefcase fa-3x" style="color: #ffffff;"></i> </span><br> <h1>500+ SITES</h1> <p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Nisi cupiditate ad id tempore fugit expedita.</p> </div> <div class="sec2"> <span class="circle"> <i class="fa-solid fa-code fa-3x" style="color: #ffffff;"></i> </span><br> <h1>DEVELOPMENT</h1> <p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Nisi cupiditate ad id tempore fugit expedita.</p> </div> </div> <div class="root2"> <img src="https://cdn.pixabay.com/photo/2020/03/24/03/35/man-4962668_960_720.png" alt="profile picture"> </div> <div class="root3"> <div class="sec3"> <span class="circle"> <i class="fa-solid fa-headset fa-3x" style="color: #ffffff;"></i> </span><br> <h1>SUPPORT</h1> <p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Nisi cupiditate ad id tempore fugit expedita.</p> </div> <div class="sec4"> <span class="circle"> <i class="fa-solid fa-rocket fa-3x" style="color: #ffffff;"></i> </span><br> <h1>EFFECTIVE</h1> <p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Nisi cupiditate ad id tempore fugit expedita.</p> </div> </div> </div> </div> <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;
}
body{
    font-family: 'Nanum Gothic', sans-serif;
    margin: 0%;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box{
    width: 90vw;
    height: 90vh;
    display: flex;
    flex-direction: row;
}
.circle{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: hotpink;
    display: flex;
    justify-content: center;
    align-items: center;
}
.root1{
    width: 35%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.sec1{
    width: 100%;
    height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
}
.sec1 h1{
    margin: 0%;
    letter-spacing: 2px;
    color: #42b883;
    font-size: 25px;
}
.sec1 p{
    font-style: italic;
    font-weight: 500;
    margin: 10px;
}
.sec1 .circle{
    background-color: #42b883;
}
.sec2{
    width: 100%;
    height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
}
.sec2 h1{
    margin: 0%;
    letter-spacing: 2px;
    color: #347474;
    font-size: 25px;
}
.sec2 p{
    font-style: italic;
    font-weight: 500;
    margin: 10px;
}
.sec2 .circle{
    background-color: #347474;
}
.root2{
    width: 30%;
    height:90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.root2 img{
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.root3{
    width: 35%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.sec3{
    width: 100%;
    height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
}
.sec3 h1{
    margin: 0%;
    letter-spacing: 2px;
    color: #35495e;
    font-size: 25px;
}
.sec3 p{
    font-style: italic;
    font-weight: 500;
    margin: 10px;
}
.sec3 .circle{
    background-color: #35495e;
}
.sec4{
    width: 100%;
    height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
}
.sec4 h1{
    margin: 0%;
    letter-spacing: 2px;
    color: #ff7e67;
    font-size: 25px;
}
.sec4 p{
    font-style: italic;
    font-weight: 500;
    margin: 10px;
}
.sec4 .circle{
    background-color: #ff7e67;
}
@media screen and (max-width:1024px){
    .container{
        height: fit-content;
    }
    .box{
        flex-direction: column;
        row-gap: 30px;
        height: fit-content;
    }
    .root1{
        width: 100%;
        height: fit-content;
        order: 2;
        row-gap: 30px;
        font-size: 20px;
    }
    .root2{
        width: 100%;
        height: fit-content;
        order: 1;
    }
    .root3{
        width: 100%;
        height: fit-content;
        order: 3;
        row-gap: 30px;
        font-size: 20px;
    }
}
@media screen and (max-width:630px){
    .container{
        padding:20px 0px;
        height: fit-content;
    }
    .box{
        flex-direction: column;
        row-gap: 30px;
        height: fit-content;
    }
    .root1{
        width: 100%;
        height: fit-content;
        order: 2;
        row-gap: 30px;
        font-size: 20px;
    }
    .root2{
        width: 100%;
        height: fit-content;
        order: 1;
    }
    .root3{
        width: 100%;
        height: fit-content;
        order: 3;
        row-gap: 30px;
        font-size: 20px;
    }
}
.credit a{
    text-decoration: none;
    color: #000000;
    font-weight: 800;
}
.credit{
    color: #000000;
    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 Why choose us section design using HTML and CSS.

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