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 HTML & CSS

Dev-mustyβ€’ 50

@Dev-musty

Desktop design screenshot for the Social links profile coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


What are you most proud of, and what would you do differently next time?

Been able to effectively use flex-box and pseudo classes. I'd add some animation to my hover state on future projects.

Community feedback

Svitlana Suslenkovaβ€’ 3,450

@SvitlanaSuslenkova

Posted

@media screen and (max-width: 1440px) {... This, I opened it and didn't see half of your css, my screen is bigger... It's better to start from css for mobile screen and add @media for desktop (with min-width). Hope you found this comment helpful :)

Marked as helpful

0

Dev-mustyβ€’ 50

@Dev-musty

Posted

Hello @SvitlanaSuslenkova Thanks

0
MikDra1β€’ 5,990

@MikDra1

Posted

I encourage you to use this technique to make the card responsive with ease:

.card {
width: 90%;
max-width: 600px;
}

On the smaller screens card will be 90% of the parent (here body), but as soon as the card will be 600px it will lock with this size.

Also to put the card in the center I advise you to use this code snippet:

.container {
display: grid;
place-items: center;
}

Hope you found this comment helpful πŸ’—πŸ’—πŸ’—

Good job and keep going πŸ˜πŸ˜ŠπŸ˜‰

1

Dev-mustyβ€’ 50

@Dev-musty

Posted

Hello @MikDra1 Thanks

0
Teodor Jenklerβ€’ 3,720

@TedJenkler

Posted

Hi @Dev-musty,

Nice project! I noticed that you're using <div> elements quite a lot. Consider incorporating more semantic HTML elements like <main> to improve accessibility and SEO.

Also, I see that you’re using <button> elements instead of <a> tags. Remember that <a> tags should be used for links, while <button> elements are meant for actions like submitting a form or triggering a function.

Additionally, it’s important to use your headings correctly. <h1>, <h2>, and so on should be used in a hierarchical order from most important to least important and then styled with CSS. Note that <h1> should only be used once per page.

Continue the great work!

Best, Teodor

0

Dev-mustyβ€’ 50

@Dev-musty

Posted

Thanks @TedJenkler

1
Dev-mustyβ€’ 50

@Dev-musty

Posted

Any suggestions on how I can improve are welcome!

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