Order Summary Component Challenge [ Responsive ]
Design comparison
Solution retrospective
Any kind of feedback will be extremely valuable and helpful. Thanks :)
Community feedback
- @kens-visualsPosted about 3 years ago
Hey @dubeyaditya29 👋🏻
I have some suggestions to help you fix the accessibility, HTML and some other issues.
- In your markup,
<div class="container">...</div>
should be<main class="container">...</main>
and<div class="attribution">...</div>
should be<footer class="attribution">...</footer>
. - This image
<img src="/images/illustration-hero.svg">
must have analt
tag that describes the image. These will fix the accessibility issues. Don't forget to generate a new repot once you fix the issues. - However, the music icon, should have
aria-hidden="true”
, because it's for decoration. You can read more aboutaria-hidden
here. - Perhaps, you forgot to include
font-family
, you can find it instyle-guide.md
file. - Now let's fix the background, check out the following snippet:
body { background-image: url("/images/pattern-background-desktop.svg"); background-repeat: no-repeat; background-size: contain; background-color: #e0e8ff; }
this will make the
background
to look closer to the original design.I hope this was helpful 👨🏻💻 One last suggestion, try to implement
:hover
on the button and links. Other than that, you did a good job for the first project, keep it up. Cheers 👾Marked as helpful1@dubeyaditya29Posted about 3 years ago@kens-visuals Hi 👋 Kens Thankyou for reviewing the project I will make the corrective changes. Completely neglected the style guide had hard times matching those colors on internet my bad!. I didnt understood this line of yours "Don't forget to generate a new repot once you fix the issues." can you explain it once again. Thanks :)
0@kens-visualsPosted about 3 years ago@dubeyaditya29 you're welcome. When you fix an issue, that's been reported in reported beneath your solution, and push it to your GitHub repository, Frontend Mentor doesn't automatically fix those. So you need to go View Report and in the top right corner there's a button that says Generate a New Report, click on it, so the fixed issues take place and clear the report.
Marked as helpful1 - In your markup,
- @ezequielmagiPosted about 3 years ago
Hey! how you doin? be carefull with the background repeat ;-)
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