Social link profile using HTML and CSS

Solution retrospective
Really enjoyed working on this project, it helped me test out level on CSS.
What challenges did you encounter, and how did you overcome them?I encountered a bit challenge during the creation of the social link buttons, I had to make research to figure how to get it done.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @repro123
Well done on completing the challenge. Just a few observations:
-
Make sure you start each project in a different folder, don't put all your projects in one folder
-
Use the DRY (Don't Repeat Yourself) principle in your CSS. You have many
margin: 0;
andpadding: 0;
in multiple places. You can use:
* { margin: 0; padding: 0; }
-
brings me to my third point. Try and use a modern CSS reset before your styles in your CSS file. Check out Andy Bell or Josh Comeau's CSS resets
-
there are too many combinators. Using just a CSS class will be fine.
-
avoid using px for font size or for media query. It's bad for responsives.
Nice job, once more
Marked as helpful -
Join 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