Design comparison
Solution retrospective
I'm looking for some feedback on how I set up my files and also on how my code looks. Is there something I can do more efficiently or is there a better way to do things? I couldn't quite get my design to match up with the mockup, and I think the little tweaks I made here and there weren't the best.
Any feedback at all would be really appreciated. I'm not afraid of constructive criticism.
Thanks for having a look!
Community feedback
- @kens-visualsPosted about 3 years ago
Hey @laurel-ray 👋🏻
I have some quick tips to help you fix the accessibility 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>
. 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 about aria-hidden here. - Hero image should have a
display: block;
, it removes the line underneath the image. If you want to know what's causing it, check out the 3rd section of this video
I hope this was helpful 👨🏻💻 one last thing from me, I'd suggest trying to make it responsive. Other than that, you did a superb job for the first project. Cheers 👾
Marked as helpful2@laurel-rayPosted about 3 years ago@kens-visuals Yes! This is what I needed. Thank you for the helpful links. I will go back make these corrections and try to make it responsive.
0 - In your markup,
- @CyrusKabirPosted about 3 years ago
hello my dear friend ♥ actually you did good and clean but i think in you buttons like ( cancel , change and proceed ) aren't like the main design and it's because the "" font weight "" you use
Marked as helpful1@laurel-rayPosted about 3 years ago@CyrusKabir Hi, thank you for having a look. I had trouble making the letters on the buttons and links look right and I wasn't sure why. I'll take another crack at it.
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