Design comparison
SolutionDesign
Solution retrospective
Hello!! This is my first challenge and it took me some time to make it alive :) I'm a beginner and am excited to work on the next challenge. Please let me if you have any questions or suggestions. Thank you!
Community feedback
- @kens-visualsPosted about 3 years ago
Hey @hcxweb 👋🏻
I have a quick tip to help you fix the HTML issue and some other things.
- In this case, instead of
<section>
, I suggest using regular<div>
for a couple of reasons. First, when you use a<section>
you have to have a heading, likeh2-h6
. Next,<section>
is for bigger parts of a layout, such as, contact us about us, image gallery, etc. - Next, add
aria-hidden="true”
for the music icon, because it's for decoration. You can read more aboutaria-hidden
here. Here's how to do it:
<img src="images/icon-music.svg" alt="" aria-hidden="true” class="music-icon">
I hope this was helpful 👨🏻💻 nicely done for the first project, keep it up. Cheers 👾
Marked as helpful0 - In this case, instead of
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