
Design comparison
SolutionDesign
Solution retrospective
Enjoyed this one! Feedback always welcome!
Community feedback
- P@kens-visualsPosted over 3 years ago
Hey @Stygan 👋🏻
I have a couple of suggestions for the project.
- First, for the illustration, add
aria-hidden="true”
, because it's for decoration. You can read more aboutaria-hidden
here. Like so:
<img src="./images/illustration-mockups.svg" alt="" class="illustration" aria-hidden="true”>
- Next, the social links, could be in
ul
and eachli
could have<a>
tag that can either take to empty pages of the websites accordingly or just point to nowherehref="#"
. This would be semantically correct. - Also, the icons should have
aria-hidden="true"
and if you choose to implement my suggestion, make sure to addaria-label
for the<a>
tags that would have the names of the icons, such as,aria-label="facebook"
and like so for the other two icons. - Lastly, I won't go into many details about resetting CSS, but I'll leave this cool article here, which will make more sense than my brief explanation.
I hope this was helpful 👨🏻💻 all in all, you did a great job, especially with the animation, well done Cheers 👾
Marked as helpful2 - First, for the illustration, add
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