Design comparison
Solution retrospective
Yoo everyone, this was my first time making a landing page and it was kind of tricky with the background image. I cannot wait to make bigger landing pages.
All feedback is appreciated.
Community feedback
- @pikapikamartPosted about 3 years ago
Hey, great work on this one. Layout in desktop looks really great, the responsiveness could be better since right now, if you scale down the screen-width, the hero-image starts to get squeezed. The mobile layout however looks great.
Some other suggestions would be:
- The website-logo should have used
alt="huddle"
as the attribute, the image already has the text better start using it. Also, a website-logo should always be visible for all users. - The hero-section
img
should have an extra attributearia-hidden="true"
so that it is totally hidden. register
is more likely a link so usinga
tag on it would be better.- Also, when you remove an
outline
to an element, always make sure to add another visual indicator. Try usingtab
key on your keyboard, you can't navigate properly on the site because there is no visual indicator where you at right now. Add some stylings on the:focus-visible
state of the element. - On the
a
tag that wraps the social-media-icon, it should have anaria-label
or ansr-only
element inside it, defining where this link would take the user, for facebook, the value of course should be "facebook". - The
svg
inside the social media should be hidden, I don't know why there is aion-icon
on the markup, it should just be:
<a href="link of the social media"> <span class="sr-only">facebook </span> <svg aria-hidden="true"></svg> </a>
No need to nest the
svg
much deeper, also add thataria-hidden="true"
since the icon is just decoration.Aside from those, great work again on this one.
1@iliwiliPosted about 3 years ago@pikamart First of all thanks for the great feedback you have given me, I learned so much from this. I updated and understand everything until the 'sr-only', so I did some research and I actually never was thinking about screen readers when programming these challenges.
I learned a ton from this, thanks again.
0 - The website-logo should have used
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