Design comparison
SolutionDesign
Solution retrospective
Any feedback is greatly appreciated!
Community feedback
- @kens-visualsPosted about 3 years ago
Hey @seilreven 👋🏻
I have some suggestions to help you fix the accessibility issues and some other things.
- In your markup,
<section class="summary">...</section>
should be<main class="summary">...</main>
and<div class="attribution">...</div>
should be<footer class="attribution">...</footer>
. - Next, I suggest using
<h2>
or<p>
instead of<h3>
, because headings in HTML have to increase gradually, such ash1, h2, h3….
These will fix the accessibility issues. Only, don't forget to generate a new repot once you fix the issues. - Also, the music icon, should have
aria-hidden="true”
, because it's for decoration only. You can read more aboutaria-hidden
here. Like so:
<img src="./images/icon-music.svg" alt="" aria-hidden="true”>
- Lastly, I suggest implementing
:hover
state, which you can find in design folderactive-state
image, after you implement it you can also addtransition: all 0.2s;
to the button and the links, this will make:hover
smoother.
I hope this was helpful 👨🏻💻 other than that, you did a really nice job for the first project. Cheers 👾
Marked as helpful1 - 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