Quote Card using HTML and CSS











Hello Developer, Learning Robo offers a dynamic and visually appealing quote card snippet that presents your quote at a glance. This quote card snippet was precisely created using HTML and CSS. Introducing our inspiring quote card snippet creatively designed using HTML and CSS. This quote card snippet not only enhances the visual appeal of your content but also conveys your message with grace. Its clean and modern layout ensures that your favourite quotes or motivational sayings stand out, making it perfect for websites. You can add the author's picture and name to the card for added quality. Elevate your quotes with our HTML and CSS quote card snippet. And it's fully responsive, so you can use it on any device - desktop, laptop, tablet or even a smartphone. Get creative with this quote card and put your skills to the test. Remark: CSS is a type of markup that is written in a separate file that is then associated with your HTML file.

How to Create Quote 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> <head> <title>Quote Card UI design - learningrobo</title> <meta name="description" content="Quote Card UI design - learningrobo"> <meta name="author" content="learningrobo.com"> <meta name="keywords" content="quote 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> </head> <body> <!--Hello Future Developer Thanks for Using learningrobo.com, Share & Support us--> <div class="section1"> <div class="card"> <div class="cardin1"> <img src="https://cdn.pixabay.com/photo/2012/11/28/12/00/thomas-alva-edison-67763_1280.jpg" alt="inventor Thomas Edison"> </div> <div class="cardin2"> <h2>I have not failed.<br>I've just found 10,000<br>ways that won't work.</h2> <h6>- Thomas Edison</h6> <div class="credit">Made with <span style="color:tomato;font-size:20px;">❤ </span>by <a href="https://www.learningrobo.com/"> learningrobo</a></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
**/
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300&display=swap');
*{
    box-sizing: border-box;
}
html{
    height: 100%;
}
body{
    font-family: Arial, sans-serif;
    height: 100%;
    background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
}
.section1{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.card{
    display: flex;
    flex-direction:row;
    justify-content: center;
    border-radius:10px;
    width:750px;
    height:520px;
    padding:40px 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: rgba(255,255,255, 0.90);
}
.cardin1{
    display: flex;
    flex-direction:column;
    justify-content: center;
    width:30%;
    padding:0 10px;
}
.cardin1 img{
    width: 350px;
    height:450px;
    border-radius:6px;
    margin:10px 0px 10px -120px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.cardin2{
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    width:70%;
    margin-left:40px;
}
.cardin2 h2{
    margin:2px 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 45px;
    line-height:90px;
    color: #121212;
}
.cardin2 h6{
    margin:0 30px 0 auto;
    text-align:right;
    font-size:16px;
}
@media only screen and (max-width: 1024px){
    .card{
        width:70%;
        flex-direction:column;
        height: fit-content;
    }
    .cardin1{
        width: 100%;
        align-items: center;
    }
    .cardin1 img{
        margin:10px;
    }
    .cardin2{
        width: 100%;
        margin:10px;
    }
    .cardin2 h2{
        text-align: center;
    }
}
@media only screen and (max-width: 630px){
    .card{
        width:98%;
        flex-direction:column;
        height: fit-content;
    }
    .cardin1{
        width: 100%;
        align-items: center;
    }
    .cardin1 img{
        margin:10px;
    }
    .cardin2{
        width: 100%;
        margin:10px;
    }
    .cardin2 h2{
        text-align: center;
        font-size:26px;
        line-height:normal;
    }
}
.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;
}
We hope you would like this Quote Card Design using HTML and CSS.

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