Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
Finished with very less googling and quickly.
What challenges did you encounter, and how did you overcome them?Not very. Googled when needed.
What specific areas of your project would you like help with?Overall.
Community feedback
- @Disney-BanjePosted 6 months ago
Congratulations on completing your challenge
I have some suggestions for your future projects:
- Try use semantic in your code. For example instead of
<div>
you could use<article>
. - Because this is a social link profile the keyword is link, which means that instead of using the HTML element
<button>
, you would need to go for<a href=''>....your code...</a>
. - Finally, instead of using a div element
<div class= 'socials'>
as your links wrapper, it is much better to use and unordered list element<ul class='socials'>
for accessibility purposes.
Here is an example:
<ul class= 'socials'> <li> <a href="#">GitHub</a> </li> - -- - Add your next elements below --- - </ul> **Congratulations again for making your code work...**
Marked as helpful1 - Try use semantic in your code. For example instead of
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