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

Anuj kumarā€¢ 110

@Anujkumar6316

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?

I'm most proud of how clean and organized the code is in this example. Each element is properly structured and styled, making it easy to understand and maintain. Additionally, the use of CSS for styling allows for flexibility and consistency across different devices and screen sizes.

If I were to do something differently next time, I might consider adding more interactivity or animations to make the social links profile more engaging. This could include hover effects, transitions, or even interactive elements like buttons or tooltips. Additionally, I might explore using CSS frameworks like Bootstrap to streamline the development process and ensure better compatibility across browsers.

What challenges did you encounter, and how did you overcome them?

The main challenge was ensuring consistent display across browsers and devices. I used modern CSS techniques like flexbox and media queries for responsiveness. Ensuring smooth hover effects across browsers was another challenge, addressed with CSS transitions and thorough testing.

What specific areas of your project would you like help with?

none

Community feedback

Daniel šŸ›øā€¢ 44,230

@danielmrz-dev

Posted

Hello, @Anujkumar6316!

Your project is looking fantastic!

I'd like to suggest a way to make it even better:

  • Using margin isn't always the most effective method for centering an element.

Here's a highly efficient approach to position an element at the center of the page both vertically and horizontally:

šŸ“Œ Apply this CSS to the body (avoid using position or margins in order to work correctly):

body {
    min-height: 100vh;
    display: flex; 
    justify-content: center;
    align-items: center;
}

I hope you find this helpful!

Keep up the excellent work!

0
Edperā€¢ 40

@edper

Posted

Good start. But I advise you to include hover on your social links in your CSS. Also, you use background-color when you are using the :hover pseudo class. Maybe you can use the green color as your background color for hover. You can also play around with using the brand color as your background for each link.

0
Saiful Islamā€¢ 410

@saifuldt

Posted

footer is missing

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