Design comparison
Solution retrospective
Hi ππΌ I'm Arismendy, Currently learning Front End Development.
- Currently practicing CSS Grid & Flexbox
- Learning JavaScript
Any advice or critics would be gladly appreciated, my goal is to improve everyday and nothing is better than receiving feedback. Thanks in advance.
Community feedback
- @VCaramesPosted about 2 years ago
Hey there! π Here are some suggestions to help improve your code:
-
To better identify the main content of you site you will want to encase your entire component inside a Main Element.
-
For this challenge you want to use the Picture Element not the Background Image Property. The Background Image Property is mainly used on decorative images
Picture Element will allow your to switch between images in different breakpoints and makes your site load faster by saving bandwidth.
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
https://web.dev/learn/design/picture-element/
-
The only heading in this challenge is the name of the perfume, βGabrielle Essence Eau De Parfumβ . The rest of the text should be wrapped in a Paragraph Element.
-
The old price π· is not being announced properly to screen readers. You want to wrap it in a Del Element and include span element with an sr-only text explaining that this is the old price.
If you have any questions or need further clarification, let me know.
Happy Coding! π»π
Marked as helpful1@agmonster08Posted about 2 years ago@vcarames Thank you so much for the input really appreciate it. Will add your suggestions ASAP. This is great info.
0 -
- @AdrianoEscarabotePosted about 2 years ago
Hi Arismendy Gill, how are you?
I really liked the result of your project, but I have some tips that I think you will enjoy:
- every Html document must contain the main tag, so we can identify the main content, to fix this, wrap all the content with the main tag. HTML5 landmark elements are used to improve navigation experience on your site for users of assistive technology.
The rest is great!
I hope it helps... π
Marked as helpful0
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