Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
I'm proud of completing another challenge and I want to further improve my knowledge and clean code techniques.
What challenges did you encounter, and how did you overcome them?Responsiveness continues to be my challenge, but the more I practice, the more I learn.
What specific areas of your project would you like help with?Any part of the code. My intention is to improve.
Community feedback
- @MahmoodHashemPosted 2 days ago
Hello There
Your project is fantastic.
To enhance it even more, consider using an unordered list (
<ul>
) instead of a<div>
for displaying a list of links. This is more semantically correct, improves accessibility, makes the content easier to maintain and style, and provides more flexibility.Here's an example of how you might adjust your code:
<ul class="links"> <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>
0
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