Design comparison
SolutionDesign
Solution retrospective
Your feedback is very much appreciated
Community feedback
- @mdajmalshadabPosted about 3 years ago
Hey you have done it nicely, only you just need to reduce some bottom padding of the card, then it'll match with the given challenge. Keep coding ✌️
Marked as helpful0 - @kens-visualsPosted about 3 years ago
Hey @adeyinkaezra123 👋🏻
I have some suggestions to help you fix the accessibility, HTML and some other issues.
- In HTML, I suggest removing
<section>
, then change <div class="container">...</div> to <main class="container">...</main> and<div class="attribution">...</div>
should be<footer class="attribution">...</footer>
. - Use
forward slash -- /` for the images' path, like this `<img src=`images/illustration-hero.svg` alt=
>`. These will fix the accessibility and HTML 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. - Also, I suggest implementing :hover states, which you can find in Frontend Mentor's design folder, it should say active-state.
- For the dancing illustration, make sure to add
alt
tag, that describes the image. Also, please don't include words likeimage of..
orillustration of...
, because they would be redundant. - Lastly, change
height
of.container
tomin-height: 70vh;
, it will allow the content to stay at70vh
but will also grow if needed.
I hope this was helpful 👨🏻💻 you did a good job for the second project, well done. Cheers 👾
Marked as helpful0@adeyinkaezra123Posted about 3 years ago@kens-visuals Thanks, would do those right away Definitely learned new hacks
0 - In HTML, I suggest removing
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