Sorry for basic question. I’m a new student of full stack web developer bootcamp and now I’m stuck with this part of the challenge.
How to create a testimonial card like these?
Testimonial card
I have tried write a code like this (with bootstrap 4.3) but it’s too messy here
<section id="review">
<div class="container">
<div class="row">
<div class="col-md-6 text-white mb-5">
<h1>TOP SCORE</h1>
<p>This top score from various game provided on this platform</p>
<button type="button" class="btn btn-warning">See More</button>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card" style="background-color: #181818;">
<div class="card-body">
<img class="avatar" src="../chap3/assets/evan-lahti.jpg" alt="">
<h5 class="card-title text-white">Evan Lahti</h5>
<h6 class="card-subtitle mb-3 text-muted">PC Gamer</h6>
<img style="position: relative; right: -40px;" src="../chap3/assets/twitter-card.png"></img>
</div>
<p class="card-text text-white">"One of my gaming highlights of the year."</p>
<p class="card-text">
<small class="text-muted">June 18, 2021</small>
</p>
</div>
</div>
</section>
The output of my code is like
this
2
Answers
You can use tailwind css to create testimonial cards! Just learn tailwind css and then go to tailblocks website to get simple testimonial cards!!
You can refer this Thank me later