Design comparison
SolutionDesign
Community feedback
- @VFGarciaDevPosted 8 months ago
Your solution is very similar to the original design, congrats! I'm a beginner, but I think I could give you some suggestions:
- Your responsive layout works well, but would help using (%, rem, em) instead of px to get a better responsive feedback.
- This suggestion I got from my course monitor: Inside the <nav>, seeing that it's a group of links, you could use the tag <ul><li> for better semantic. Furthermore, there was no need for <button> because it's a link and already used the <a>. -- So, it could be like that:
<nav> <ul> <li><a href="#">GitHub</a></li> <li><a href="#">Frontend Mentor</a></li> <li><a href="#">LinkedIn</a></li> <li><a href="#">Twitter</a></li> <li><a href="#">Instagram</a></li> </ul> </nav>
Marked as helpful0
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