Quotes Card using HTML and CSS

















Hello Developers, Learning Robo offers a dynamic and visually appealing quote card snippet that presents the information at a glance. This quote card snippet was precisely created using HTML and CSS. Our Inspirational Quote Card Snippet is an innovative HTML and CSS-based card that enhances the visual appeal of your content while conveying your message with grace. Its modern, clean design ensures that your favourite quotes or inspirational phrases are prominently displayed, making it an ideal choice for websites. Plus, this card is fully responsive and can be used on desktop, laptop, tablet and smartphone devices. Use this quote card snippet to express your creativity. Note: CSS is located in a separate file attached to the HTML file.

How to make Quote Card 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="quote"> <h6><q>Success is not final; failure is not fatal: It is the courage to continue that counts.</q><br><span><p>— Winston S. Churchill</p></span></h6> </div> <div class="quote-triangle"></div> <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> <!--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=Play&display=swap');
*{
    box-sizing: border-box;
}
body{
    font-family: Arial, sans-serif;
    margin:0%;
}
.section1{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    background-color:#eee;
}
.card{
    position: relative;
    display: flex;
    flex-direction:column;
    justify-content:space-between;
    border-radius: 10px;
    width:400px;
    height:400px;
    background-image: linear-gradient(to top, #c471f5 0%, #fa71cd 100%);
    padding:20px;
    box-shadow: rgba(0, 0, 0, 0.2) 12px 0px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}
.quote{
    display: flex;
    align-items:center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    height:360px;
}
.quote h6{
    margin:0;
    font-size:30px;
    color:#121212;
}
.quote h6 span p{
    margin:10px 0 0 auto;
    text-align:right;
    font-size:16px;
    color:#121212;
}
.quote-triangle {
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #c471f5;
    transform: translateX(-50%);
}
@media only screen and (max-width: 630px){
    .card{
        width:98%;
    }
    .cardin1{
        align-items: center;
    }
    .cardin1 p{
        text-align: justify;
    }
    .cardin2{
        justify-content: center;
    }
}
.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 using HTML and CSS.

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