Apologies for the simplistic inquiry. As a fresh student of a full stack web developer bootcamp, I find myself grappling with this particular challenge.
How can I go about creating a testimonial card similar to this one?
I've attempted to write code (using Bootstrap 4.3) but it appears quite cluttered:
<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 is from various games 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 current output of my code looks like this.