Design comparison
Solution retrospective
Give your feedback on my work. Is margin and padding is as same as design ?
Community feedback
- @Bayoumi-devPosted over 2 years ago
Hey Mukesh, It looks good!...
My suggestions:
- I suggest you put the
Why Us
content into thelist item
to add moresemantics
to your project,Div
's don't do much for semantics but a list is much more meaningful..:
<ul class="why-us-list"> <li>Tutorials by industry experts</li> <li>Peer & expert code review</li> <li>Coding exercises</li> <li>Access to our GitHub repos</li> <li>Community forum</li> <li>Flashcard decks</li> <li>New videos every week</li> </ul>
Page should contain a level-one heading
, Changeh2
toh1
<h1 class="heading">Join our community</h1>
You should always have one
h1
per page of the document... in this challenge, you will useh1
just to avoid theaccessibility issue
that appears in the challenge report... but don't useh1
on small components<h1>
should represent the main heading for the whole page, and for the best practice use only one<h1>
per page.-
Heading levels should only increase by one
, Useh2
instead ofh4
...Ordered headings
make it easier to navigate and understand when using assistive technologies. -
I suggest you add
cursor: pointer;
to the button, Thecursor
indicates to users there is an action that will be executed when clicking on it
Hope this is helpful to you... Keep coding👍
Marked as helpful1 - I suggest you put the
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