Design comparison
SolutionDesign
Solution retrospective
What specific areas of your project would you like help with?
So just a qq. I've made the social links as an unordered list. I guess that is ok too but do you think maybe it is better to write them as separate div elements, or even make them as buttons inside list elements?
Community feedback
- @josifermaodevPosted 3 months ago
Good job!!
Your version of HTML is very good, but there is another simpler way to do it, using the
<nav>
element since the layout is a navigation system.Exemplo:
<nav class="container__links"> <a href="#" class="list__item">GitHub</a> <a href="#" class="list__item">Frontend Mentor</a> <a href="#" class="list__item">LinkedIn</a> <a href="#" class="list__item">Twitter</a> <a href="#" class="list__item">Instagram</a> </nav>
0@LarisaKampePosted 3 months ago@josifermaodev I knew there was some better way, thank you so much! :D
1
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