Design comparison
Community feedback
- @StroudyPosted 2 months ago
- I would put these into a
<ul> <li>
, To give it more semantic meaning because it is a list of social links,
<ul> <li><a>GitHub</a></li> <li><a>Frontend Mentor</a></li> <li><a>LinkedIn</a></li> <li><a>Twitter</a></li> <li><a>Instagram</a></li> </ul>
<a href="https://github.com/Egnodia" target="_blank">Github</a> <a href="https://www.frontendmentor.io/profile/Egnodia" target="_blank">Frontend Mentor</a> <a href="https://www.linkedin.com/in/devantetoussaint/" target="_blank">LinkedIn</a> <a href="https://codepen.io/Egnodia" target="_blank">Code Pen</a> <a href="https://www.freecodecamp.org/Egnodia" target="_blank">FreeCodeCamp</a>
-
Using
max-width: 100%
ormin-width: 100%
is more responsive than justwidth: 100%
because they allow elements to adjust better to different screen sizes. To learn more, check out this article: responsive-meaning. -
Developers should avoid using pixels (
px
) because they are a fixed size and don't scale well on different devices. Instead, userem
orem
, which are relative units that adjust based on user settings, making your design more flexible, responsive, and accessible. For more information check out this, Why font-size must NEVER be in pixels or this video by Kevin Powell CSS em and rem explained.- Another great resource for px to rem converter. -
For future project, You could downloading and host your own fonts using
@font-face
improves website performance by reducing external requests, provides more control over font usage, ensures consistency across browsers, enhances offline availability, and avoids potential issues if third-party font services become unavailable.
I hope you found this advice helpful! Keep up the great work, and don’t forget to dive deeper into the details. You’re doing amazing, and I can’t wait to see what you create next. Happy coding! 🚀
Marked as helpful0 - I would put these into a
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