Design comparison
Solution retrospective
- Any form of feedback would be appreciated, thanks.
Community feedback
- @MelvinAguilarPosted 11 months ago
Hello there ๐. Good job on completing the challenge !
I have some suggestions about your code that might interest you.
-
The
<span>
tag is useful for various inline styling purposes, but it's not recommended to use it solely for containing text. Consider using semantic tags like<p>
for paragraphs -
Avoid sending the entire image path as the alt attribute (
<img alt={imageEquilibrium} <img alt={imageEquilibrium}>
), as screen readers may struggle to interpret it. Instead, provide a descriptive alt attribute for the image. -
For elements with a hover effect in the design, consider enclosing them within an a (anchor) tag for better semantics and accessibility
I hope you find it useful! ๐ Above all, the solution you submitted is great!
Happy coding!
Marked as helpful1 -
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