Design comparison
SolutionDesign
Solution retrospective
any reccommendations or enhancments? ^_^
Community feedback
- @pikapikamartPosted about 3 years ago
Hey, awesome work on this one. Both desktop and mobile layout looks really great and it is responsive.
Just some suggestions on this one:
- Since you made the website-logo a link, you would need to use
aria-label
attribute or screen-reader element inside it. The value for whatever method you pick will be the place where this link would take them. Since typically, a website-logo points the user to the homepage, you could usearia-label="homepage"
on thea
tag. This will inform the user where this link would take them. You do this method if there are no text-content inside the element where screen-reader could have read. - Website-logo
img
should be using the website's name as thealt
likealt="fylo"
. Remember that a website's logo is meaningful so always make sure it uses the properalt
value. - I think those 3 items below the website-logo are interactive components but not quite sure if it is a link or just button to control something, hard to tell really.
- A page must have a single
h1
on a page. Since there are no text-content that are visible that could beh1
, you will make theh1
screen-reader only text. Meaning this will be hidden for sighted users and only be visible for screen-reader users, search aboutsr-only
stylings and see how it is used. Theh1
text should describe what is the main content is all about, thish1
would be placed as the first text-content inside themain
element. - The
0gb
and100gb
aren't really a list items, they are just better sitting on their own container likep
tag but not insideul
.
Aside from those, great work again on this one.
Marked as helpful1 - Since you made the website-logo a link, you would need to use
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