Submitted over 1 year ago
Testimonials Grid Section (Solution With Grid/Flex)🤟
@JohanXxz
Design comparison
SolutionDesign
Solution retrospective
**Hello everybody 🤟🤟
- This was an excellent exercise to continue improving my skills in html and css.
- Any advice on best practices please feel free to comment.
Community feedback
- @VCaramesPosted over 1 year ago
Hey there! 👋 Here are some recommendations for enhancing your code.:
- The
section
element is being used incorrectly ⚠️ and not needed for this challenge.
- 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>
More Info:📚
- The names of each individual are headings ⚠️. So they should be wrapped in a
heading
element. Since they are all equal level of importance, theh2
heading will be the best choice.
- ALWAYS Implement a "Mobile First" approach 📱 > 🖥
Mobile devices are now the dominant 👑 way in which people browse the web. So when building your content, you will start building with small screen sizes (starting at 320px) and work your way to larger screens using
min-width
.More Info: 📚
If you have any questions or need further clarification, you can always check out my submission and/or feel free to reach out to me.
Happy Coding! 👾
Marked as helpful0 - The
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