Testimonial Cards using HTML and CSS – Coding Torque

Share your love

Welcome to Coding Torque. In this blog, we are going to create Responsive Testimonial Cards using HTML and CSS. You should create this project if you are a beginner and learning JavaScript. This project is a section on your website that shows testimonials of your company/services.

Before we start, here are some JavaScript Games you might like to create:

1. Snake Game using JavaScript

2. 2D Bouncing Ball Game using JavaScript

3. Rock Paper Scissor Game using JavaScript

4. Tic Tac Toe Game using JavaScript

5. Whack a Mole Game using JavaScript

 

I would recommend you don’t just copy and paste the code, just look at the code and type by understanding it.

 

HTML Code 

Starter Template

<!doctype html>
<html lang="en">

<head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- CSS -->
    <link rel="stylesheet" href="style.css">

    <title>Testimonials Cards using HTML and CSS only with Source Code - @code.scientist x @codingtorque
    </title>
</head>

<body>
     <!-- Further Code Here -->
</body>

</html>

 

Paste the below code in your <body> tag

<figure class="snip1390">
    <img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/331810/profile-sample3.jpg" alt="profile-sample3"
        class="profile" />
    <figcaption>
        <h2>Eleanor Crisp</h2>
        <h4>UX Design</h4>
        <blockquote>Dad buried in landslide! Jubilant throngs fill streets! Stunned father inconsolable - demands
            recount!</blockquote>
    </figcaption>
</figure>
<figure class="snip1390 hover"><img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/331810/profile-sample5.jpg"
        alt="profile-sample5" class="profile" />
    <figcaption>
        <h2>Gordon Norman</h2>
        <h4>Accountant</h4>
        <blockquote>Wormwood : Calvin, how about you? Calvin : Hard to say ma'am. I think my cerebellum has just
            fused. </blockquote>
    </figcaption>
</figure>
<figure class="snip1390"><img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/331810/profile-sample6.jpg"
        alt="profile-sample6" class="profile" />
    <figcaption>
        <h2>Sue Shei</h2>
        <h4>Public Relations</h4>
        <blockquote>The strength to change what I can, the inability to accept what I can't and the incapacity to
            tell the difference.</blockquote>
    </figcaption>
</figure>

Output Till Now

CSS Code 

Create a file style.css and paste the code below.

@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);

body {
  background-color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

figure.snip1390 {
  font-family: "Roboto", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  color: #000000;
  text-align: center;
  font-size: 16px;
  background-color: #2c3447;
  padding: 30px;
  background-image: linear-gradient(
    -25deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

figure.snip1390 *,
figure.snip1390 *:before,
figure.snip1390 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

figure.snip1390 figcaption {
  width: 100%;
}

figure.snip1390 h2,
figure.snip1390 h4,
figure.snip1390 blockquote {
  margin: 0;
}

figure.snip1390 h2,
figure.snip1390 h4 {
  font-weight: 300;
}

figure.snip1390 h2 {
  color: #ffffff;
}

figure.snip1390 h4 {
  color: #a6a6a6;
}

figure.snip1390 blockquote {
  font-size: 1em;
  padding: 45px 20px 40px 50px;
  margin-top: 30px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: inset -1.4px -1.4px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
}

figure.snip1390 blockquote:before {
  font-family: "FontAwesome";
  content: "\201C";
  position: absolute;
  font-size: 70px;
  opacity: 0.25;
  font-style: normal;
  top: 0px;
  left: 20px;
}

figure.snip1390 .profile {
  width: 100px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
  border: solid 5px #a6a57a;
}

Output Till Now

testimonial cards using HTML and CSS with source code
Written by: Piyush Patil
Code Credits: @fadzrinmadu
If you have any doubts or any project ideas feel free to Contact Us
Hope you find this post helpful💖
Share your love