Testimonials-grid-section-HTML-SCSS-GRID-Layout-BEM-FLEXBOX
Design comparison
Solution retrospective
I had a great time experimenting with grids, particularly utilizing grid-template-areas
and grid-area properties
this time. It allowed me to further enhance my skills in using media queries and responsive layouts in general.
Integrating the SVG background on the first card required some research, as did creating the border around the characters’ avatars.
What specific areas of your project would you like help with?I look forward to your advice if I ever need to improve parts of the code.
Community feedback
- @VCaramesPosted 4 months ago
Hey there @juliengDev 👋! Here are some suggestions to help improve your code:
- There is no
header
in this challenge since, as the name of the challenge states, it is a section of a site; so remove all theheader
elements you added.
- For the "quotes" img, use the
background-image
element.
- The
article
element is not the best choice ❌ for wrapping these testimonials. In order to use thearticle
element the component needs to be able to make sense on its own and be independently distributable (can be used in on another site). These testimonials cannot do neither.
- For the testimonials, it is best to to wrap each individual testimonial component in a
figure
element, the individuals information should be wrapped in afigcaption
element and lastly, the testimonial itself should be wrapped in ablockquote
element.
Code:
<figure> <figcaption></figcaption> <blockquote></blockquote> </figure>
- The headings in your component are being used incorrectly❌. Since the
h1
heading can only be used once ⚠️, it is always given to the heading with the highest level of importance. This component has several headings of equal importance, so the best option would be to use anh2
heading ✅ since it is reusable and it will give each heading the same level of importance.
- The only headings ⚠️ in this component are the names of each individual; “Daniel Clifford”, “Jonathan Walters”, “Jeanette Harmon”, “Patrick Abrams” and “Kira Whittle”. Everything else should be wrapped in a
paragraph
element.
<Happy Coding/>!
👾Marked as helpful1@juliengDevPosted 4 months agoThank you, @VCarames, for all the suggestions.
I followed your recommendations and made the changes. They helped me improve my HTML knowledge.
I hope you can provide more recommendations in the future, and I can learn from you again.
Take care.
1 - There is no
Please log in to post a comment
Log in with GitHubJoin 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