Submitted about 3 years ago
Huddle Landing Page (Responsive for Mobile)
@eduardosgn
Design comparison
SolutionDesign
Solution retrospective
Any feedback is welcome!
Community feedback
- @kens-visualsPosted about 3 years ago
Hey @eduardosgn ππ»
I have some suggestion about accessibility and some other things.
- First, in
alt
tags avoid using words like logo, illustration, etc, because screen readers read them aslogo Huddle logo
and it becomes redundant. - Also,
<img src="./images/illustration-mockups.svg" alt="Illustration">
, should havearia-hidden="true"
because it's only for decoration. - Next, I'd suggest using percentage for
width
, instead of pixels, for example the following lines of the code will give some white space to the overall project:
.page__container { width: 90%; min-height: 100vh; margin: 0 auto; }
Moreover, avoid using fixed
height
s because they're bad for responsiveness. I recommend usingmin-height
, which will give your desired result and also let the height grow if the size of the content grows.I hope this was helpful π¨π»βπ» other than that, you did a great job, one last suggestion would be to try to make it responsive for tablet viewport width as well. Cheers πΎ
Marked as helpful0@eduardosgnPosted about 3 years ago@kens-visuals Thanks for the tips!! very helpful
1 - First, in
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