Design comparison
SolutionDesign
Community feedback
- @Jeen-PreshPosted almost 2 years ago
Hey there! 👋 Here are some tips to help improve your code:
- Your whole content is supposed to be wrapped in a main html element
- The image’s doesn’t have an alt tag description, this needs to be improved upon ⚠️. It improves accessibility for screen readers
More Info:📚 https://www.w3.org/WAI/tutorials/images/
- The HTML <picture> element allows you to display different pictures for different devices or screen sizes. ⚠️. The picture element will facilitate this.
Here is an example of how it works: EXAMPLE
Syntax: <picture> <source media="(min-width: )" srcset=""> <img src="" alt=""> </picture>
More Info:📚 https://www.w3schools.com/html/html_images_picture.asp
- The old price (169.99) is not being properly announced to screen readers. To fix this, you are going to wrap the the price in a del element and inside it you will add a span element with an sr-only class that will state something like “The previous price was…” and use CSS to make it only visible to screen readers.
- The only heading in this component, is the name of the perfume; “Gabrielle Essence Eau De Parfum” . The rest of the text should be wrapped in a paragraph element.
if you found this helpful kindly mark this feedback helpful and an upvote thanks
Happy Coding!
0
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