Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Social Links Profile: Responsive and Mobile-First Design HTML & CSS

@GalaxyPliego

Desktop design screenshot for the Social links profile coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Community feedback

nanikore0 100

@nanikore0

Posted

Hey! Nice work on your solution. I like how you make the use of different CSS files to make the code more organized, and I also like the use of semantic HTML.

Here are my suggestions:

HTML:

CSS:

  • Import fonts locally using:
@font-face {
    font-family: "Inter";
    src: url(../../assets/fonts/Inter-VariableFont_slnt\,wght.ttf);
}
  • The website breaks when trying to zoom too much and you can't see all of the content. This can be fixed by centering the card container using:
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100svh;
}

And removing the following line from .main__container: height: 100vh;

But other than that, congratulations on completing this project! Hope this helps 🙏

Marked as helpful

0

Please log in to post a comment

Log in with GitHub
Discord logo

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