Design comparison
Solution retrospective
So happy for my first project! Please send in your feedbacks and places I should improve. Thank you
Community feedback
- @kens-visualsPosted about 3 years ago
Hey @Ebunski 👋🏻
I'm so happy that you're so happy for your first project, but unfortunately, the link you put doesn't work. I'm not sure if you're still working on it or what, however, try to fix it, so the community can give some feedback.
I hope this was helpful 👨🏻💻 Cheers 👾
Marked as helpful0@kens-visualsPosted about 3 years agoHey @Ebunski 👋🏻
It works now, so let me give you a couple of suggestions on how to fix the accessibility issues and some other things.
- In your markup,
<div class="container">...</div>
should be<main class="container">...</main>
and<div class="attribution">...</div>
should be<footer class="attribution">...</footer>
. These will fix the accessibility issues. Don't forget to generate a new repot once you fix the issues. - For the music icon, add
aria-hidden="true”
, because it's for decoration. You can read more aboutaria-hidden
here. Like this:
<img src="images/icon-music.svg" alt="" aria-hidden="true”>
- Also, I suggest adding
transition: all 0.2s;
to the button and the links, this will make:hover
smoother. - Lastly, add
min-height: 100vh
tobody
, sobackground-color
andbackground-image
cover the whole space.
I hope this was helpful 👨🏻💻 other than that, you did a great, keep it up. Cheers 👾
Marked as helpful0@EbunskiPosted about 3 years ago@kens-visuals Always happy to hear your review. This accessibility thing is still new to me. I didn't quite understand what you said about generating a new repot. I'm new to frontend mentor. Can we meet up on slack?
0@kens-visualsPosted about 3 years ago@Ebunski I don't have Slack sorry, but I'm always here, and whenever I see a new comment I try to respond as soon as possible. So in order to generate a new report, click on View Report and then in the top left corner you'll see Generate New Report, click on it to clear the fixed issues.
0 - In your markup,
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