Design comparison
Solution retrospective
- What do you think of the responsive part?
- Any suggestions on how I can improve are welcome!
Community feedback
- @VCaramesPosted almost 2 years ago
Hey there! 👋 Here are some suggestions to help improve your code:
- The “star icons” serve no purpose other than to** be decorative;** They add no value. Their
alt tag
should left blank and have anaria-hidden=“true”
to hide them from assistive technology.
More Info:📚
[MDN Aria-Hidden] (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-hidden#description)
- 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> <blockquote></blockquote> <figcaption></figcaption> </figure>
More Info:📚
- Your
CSS Reset
is being underutilized. 😢 To fully maximize it, you will want to add more to it.
Here are some examples that you can freely use:
- Implement a Mobile First approach 📱 > 🖥
Mobile devices are now the dominant 👑 way in which people browse the web. Making it critical that your website/content looks perfect on all mobile devices.
More Info: 📚
If you have any questions or need further clarification, feel free to reach out to me.
Happy Coding! 🎆🎊🪅
Marked as helpful1@Lamy237Posted almost 2 years agoHi @vcarames,
Thank you for your feedback.
Didn't know much about aria attributes. For the reset, I prefer to add only styles I will absolutely need (just a personal preference).
For the mobile first, I guess I need to train more on that one. Somehow, I feel more comfortable with styling for desktop first, as the remaining styles will be mush easier.
0 - The “star icons” serve no purpose other than to** be decorative;** They add no value. Their
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