Testimonial Card with Profile Image





















Hello Developers, Learning Robo provides you with a high-quality, dynamic, and eye-catching testimonial card snippet. The testimonial card snippet has been carefully crafted in HTML and CSS. Our unique testimonial card snippet uses HTML and CSS to enhance the user experience of your website. This elegant card displays customer feedback in an organized way, allowing your visitors to gain confidence and trust in your product or service. The testimonial card snippet has a sleek design and a responsive layout, making it easy to integrate into any web page. It adds a professional touch to your online presence, elevating your website today. The testimonial card is fully responsive, so users can view the information on desktop, laptop, tablet, and smartphone. With this HTML and CSS-powered testimonial card snippet, you're not only sharing information, but also making a statement about your commitment to professionalism and modern web design. Impress, engage and connect with the world through this creative and informative testimonial card snippet. Note: Keep in mind that the CSS is stored in its own file and is connected to the corresponding HTML file.

How to make Testimonial Card with Profile Image 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>Testimonial Card UI design - learningrobo</title> <meta name="description" content="Testimonial Card UI design - learningrobo"> <meta name="author" content="learningrobo.com"> <meta name="keywords" content="testimonial 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="container"> <div class="card"> <div class="cardin1"> <img src="https://cdn.pixabay.com/photo/2017/11/10/05/48/user-2935527_1280.png" alt="Profile Image"> <h2>Name One (CEO)</h2> <h6>joe@example.com</h6> <div class="star-rating"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star-half-alt"></i> </div> <p>"I couldn't be happier with the exceptional service I received from [Company Name]. Their team went above and beyond to meet my needs, and I highly recommend them!"</p> </div> </div> <div class="card"> <div class="cardin1"> <img src="https://cdn.pixabay.com/photo/2017/11/10/05/48/user-2935527_1280.png" alt="Profile Image"> <h2>Name Two (Writer)</h2> <h6>joe@example.com</h6> <div class="star-rating"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star-half-alt"></i> </div> <p>"I couldn't be happier with the exceptional service I received from [Company Name]. Their team went above and beyond to meet my needs, and I highly recommend them!"</p> </div> </div> <div class="card"> <div class="cardin1"> <img src="https://cdn.pixabay.com/photo/2017/11/10/05/48/user-2935527_1280.png" alt="Profile Image"> <h2>Name Three (MD)</h2> <h6>joe@example.com</h6> <div class="star-rating"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star-half-alt"></i> </div> <p>"I couldn't be happier with the exceptional service I received from [Company Name]. Their team went above and beyond to meet my needs, and I highly recommend them!"</p> </div> </div> <div class="card"> <div class="cardin1"> <img src="https://cdn.pixabay.com/photo/2017/11/10/05/48/user-2935527_1280.png" alt="Profile Image"> <h2>Name Four (CFO)</h2> <h6>joe@example.com</h6> <div class="star-rating"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star-half-alt"></i> </div> <p>"I couldn't be happier with the exceptional service I received from [Company Name]. Their team went above and beyond to meet my needs, and I highly recommend them!"</p> </div> </div> <div class="card"> <div class="cardin1"> <img src="https://cdn.pixabay.com/photo/2017/11/10/05/48/user-2935527_1280.png" alt="Profile Image"> <h2>Name Five (GM)</h2> <h6>joe@example.com</h6> <div class="star-rating"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star-half-alt"></i> </div> <p>"I couldn't be happier with the exceptional service I received from [Company Name]. Their team went above and beyond to meet my needs, and I highly recommend them!"</p> </div> </div> <div class="card"> <div class="cardin1"> <img src="https://cdn.pixabay.com/photo/2017/11/10/05/48/user-2935527_1280.png" alt="Profile Image"> <h2>Name Six (CTO)</h2> <h6>joe@example.com</h6> <div class="star-rating"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star-half-alt"></i> </div> <p>"I couldn't be happier with the exceptional service I received from [Company Name]. Their team went above and beyond to meet my needs, and I highly recommend them!"</p> </div> </div> </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> <!--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: auto;
    min-height:100vh;
    max-height:auto;
    display: flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    background-color:#fdd;
}
.container{
    height:auto;
    max-height: fit-content;
    width:75%;
    display: flex;
    flex-direction:row;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
    row-gap:10px;
    border-radius: 10px;
}  
.card{
    display: flex;
    flex-direction:column;
    justify-content:center;
    border-radius: 10px;
    width:calc((100% / 3) - 20px);
    height:300px;
    max-height:auto;
    background-color:#fff;
    padding:20px 10px;
    margin:10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.cardin1{
    padding:10px 10px;
    display: flex;
    flex-direction:column;
    align-items:start;
    justify-content:center;
    border-radius: 10px;
    height:auto;
}
.cardin1 img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin:0px;
    object-fit:contain;
}
.cardin1 h2{
    margin:10px 0px;
    font-family: 'Play', sans-serif;
    font-size: 25px;
}
.cardin1 h6{
    margin:0px 0px 20px 0px;
    font-size:12px;
}
.cardin1 .star-rating{
    font-size: 14px;
}
.cardin1 .star-rating .fas.fa-star{
    color: gold;
}
.cardin1 .star-rating .fas.fa-star-half-alt{
    color: gold; 
    border: none; 
}
.cardin1 p{
    margin:5px 0px;
    font-size:12px;
    line-height:20px;
}
@media only screen and (max-width: 1024px){
    .card{
        width:calc((100% / 2) - 20px);
    }
    .container{
        width:95%;
    }
}
@media only screen and (max-width: 630px){
    .card{
        width:95%;  
    }
    .container{
        width:95%;
    }
}
.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 Testimonial Card with Profile Image using HTML and CSS.

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