Design comparison
SolutionDesign
Solution retrospective
Hello Everyone! This is the first time I wrote html and css. It took a while to finish it. Please do let me know how it can be improved. What are some obvious things that I missed which could have helped improve the final outcome?? Eagerly waiting for responses! :) Thank You!
Community feedback
- @pikapikamartPosted about 3 years ago
Hey, awesome work on this one. Layout in general looks great.
Some suggestions would be:
- No need to set
width: 100%
on thebody
since it is a "block" element, it already uses 100% at default. - The vector-image should have used
alt=""
on it and an extraaria-hidden="true"
, since it is a decorative image, you want it to be hidden. - I see lots of
id
usage on this one. This is a bad practice especially when you are using them as a styling selector. Useclass
instead ofid
to target elements to style. - Music-icon should be hidden as well,
alt=""
andaria-hidden="true"
, also when usingalt
, avoid adding words that relates to "graphic" such as "icon, image, logo.." it is already an image so no need to describe it as one. annual-plan
could have used a heading tag.- Also, when there is a text-content, you don't just wrap them by
div
or anspan
, make use of meaningful element likep
tag to wrap those.
Aside from those, great work again on this one.
Marked as helpful0@dubeydivyankPosted about 3 years ago@pikamart Thank you! I will definitely try to implement your suggestions.
0 - No need to set
- @Shahab-MalikkPosted about 3 years ago
Hi nice work implemented things well Keep 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