Design comparison
Solution retrospective
Thank you for any time spent!
Community feedback
- @pikapikamartPosted almost 3 years ago
Hey, really nice work on this one. The desktop state looks great, site is responsive and the mobile state looks great as well.
Others already gave their feedback on this one which is really nice to see giving feedbacks for other members:>. For some other suggestions, here are some:
- For this one, a preferred markup would be like this:
<header /> <main /> <footer />
The
header
contains the website-logo,main
for main-content andfooter
for the social-medias. If you use a landmark, like aheader
inside themain
, it will just be treated as a normal tag so always have its own row beside themain
if needed.- Lose the word logo in the website
img
alt
attribute. When usingimg
tag, you don't need to add words that relates to "graphic" such as "logo" and others, sinceimg
is already an image so no need to describe it as one. - Don't use
width: 100vw
since this will only add a horizontal scrollbar at the bottom, since this value does not account the vertical scrollbar's width. - The hero-section image is just a decorative since there are no other info about the illustration. Decorative images should be hidden for screen-reader at all times by using
alt=""
andaria-hidden="true"
to theimg
tag or onlyaria-hidden="true"
if you are usingsvg
instead ofimg
tag. - Only use descriptive
alt
on images that are meaningful and adds content to the site otherwise hide the image for screen-reader users. - Lastly, since those social media are supposed list of "links", use
a
tag for each icon. Eacha
tag that wraps the social-media icon should have eitheraria-label
attribute orsr-only
text inside it, defining where the link would take them. For example, you should usefacebook
as the value if the link would take the user to facebook.
Aside from those, great job again on this one.
Marked as helpful1@BenjaDotMinPosted almost 3 years ago@pikapikamart Hey! Thanks so much for the detailed feedback. I definitely have a weakness with SEO and accessible html, so this is great advice for me.
I am going to find this so useful, thanks again.
1 - @Vibhor0Posted almost 3 years ago
Man, you imitated the site really well. Nicely done :)
Marked as helpful1@BenjaDotMinPosted almost 3 years ago@Vibhor0 I really appreciate that, thanks for the comment :)
0 - @MikevPeerenPosted almost 3 years ago
Hey 👋
Looking good 👍
Try to keep in mind that when using alt if it's for use to screenreaders for example the logo isn't in this case.
Marked as helpful0@BenjaDotMinPosted almost 3 years ago@MikevPeeren Hey! Thank you, than means a lot :)
That's a good point, I will use that going forward.
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