Design comparison
Solution retrospective
Hello there, My first project as a newbie. Any note or suggestion Would be appreciated!
Community feedback
- @pikapikamartPosted about 3 years ago
Hey, really great work on this one. Congrats as well for your first fem challenge! The desktop layout looks great just needed it to bit wider/bigger. The mobile layout looks fine but the breakpoint is too early coming from desktop layout. Right now at 0px - 1200px you are using the mobile layout where desktop layout could use more of those, toning the breakpoint will be really great.
Some other suggestions would be:
- Avoid using
height: 100vh
on an element especially thebody
tag as this limits the element's height based on the screen. Instead replace it withmin-height: 100vh
this takes full height but lets the element to expand if needed. - The website-logo should be using the website's name as the
alt
likealt="huddle"
. A company website will always be a meaningful element in a website. - Always have a
main
element to wrap the main content of the page. A typical structure would look like:
<header /> <main /> <footer />
This way, all content are inside landmark element.
- Hero-sections
img
could usearia-hidden='true"
attribute on it so that it will be totally hidden.
FOOTER
- Social media links should be using
a
tag for each of those since they are links. - Using
ul
on it would be great since those are "list" of links. - Each
a
tag that wraps the social media should use likearia-label
attribute. The value will be the name of the social media likearia-label="facebook"
you add this on thea
tag. You typically do this if there are no text-content inside an element that assistive tech could read.
Aside from those, great work again on this one.
Marked as helpful1@AhmedSaidi99Posted about 3 years ago@pikamart Thanks a lot, your comment was useful
0 - Avoid using
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