Design comparison
Community feedback
- @justinconnellPosted 9 months ago
Your solution looks great!
I viewed it on various screen sizes and the layout is consistent and active states are applied appropriately - nicely done!
Looking at the HTML I noticed that you make good use of some semantic markup like
header
andsection
- the only thing that stood out at a glance is that you can replace the rootdiv
with amain
element. While on the topic ofdiv
- the link list should be implemented as an unordered listul
with list itemsli
- the reason being thatdiv
has no markup meaning (aka not semantic) where as<ul><li></li></ul>
has meaning ( it's a list ). Another thing is that links need to be implemented as links that is usea
for links.Other than that, great work!
I hope you find this feedback useful,
Keep on coding!
Marked as helpful1
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