Submitted 6 months ago
Ma solution au challenge Social links profile
@ClementServant
Design comparison
SolutionDesign
Community feedback
- @Flavio-svPosted 6 months ago
Your code is quite well-structured, but I would suggest making your HTML cleaner by removing those
<div>
tags and using a semantic tag called<nav>
along with a<ul>
to organize the<a>
links, thereby tidying up the code. Below is an example:<nav> <ul> <li><a href="https://github.com/">GitHub</a></li> <li><a href="https://www.frontendmentor.io/">Frontend Mentor</a></li> <li><a href="https://www.linkedin.com/">LinkedIn</a></li> <li><a href="https://twitter.com/">Twitter</a></li> <li><a href="https://www.instagram.com/">Instagram</a></li> </ul> </nav>
Regarding your CSS code, I would suggest using clamp() to make it more responsive.
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