Testimonials grid section

Please log in to post a comment
Log in with GitHubCommunity feedback
- @KumaKorin
What's good:
- Nice color variables setup! 🌈
- Good responsive grid using media queries 📱💻
- Clean class naming for profiles 👍
Suggestions:
Alt Text Missing
Add descriptions to images (
alt="Daniel Clifford portrait"
) for screen readers.HTML Semantics
Use
<article>
instead of<section>
for each testimonial card.You can do this.
<section class="card_list"> <article class="card card-1"> ..... </article> <article class="card card-2"> ..... </article> </section>
Duplicate Code
.card-2
and.card-4
both set text to white - this can be combined to avoid repetition.Mobile Spacing
Check lower screen sizes - padding/margins might look tight on small phones.
Keep up the good work! The layout structure looks very close to the design goal 🎯
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord