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 Page: Basic HTML & CSS

Andee._.K 60

@Andee-K

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 being able to finish the challenge faster than the previous ones.

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

A challenge I encountered was the trying to layout the buttons evenly within the container.

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

Any specific design modifications.

Community feedback

Justin 120

@andrew-j-brown

Posted

Hi Andee-K!

Your project looks great, and the links work well either tabbing or hovering!

You mentioned design modifications, so I'll give you a tip with the links. You can use css to make the cursor change into a pointer while hovering over an element! Also, I used the transition property to make the background color smoothly change (opacity to change the color). That's more of a subjective choice though lol

li {
    ...
    background-color: #2E4F4F;

    transition: 0.2s all;
}

li:hover {
    opacity: 80%;
    cursor: pointer;
}

li:has(a:focus) {
    opacity: 80%;
}

I'll drop some links below regarding the above. Hope this is of help, have a great day!

https://developer.mozilla.org/en-US/docs/Web/CSS/transition

https://developer.mozilla.org/en-US/docs/Web/CSS/cursor

Marked as helpful

1

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