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

Tarek 120

@tarek3d

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 specific areas of your project would you like help with?

Any Tips to improve My code ?

Community feedback

Lance 1,580

@IzykGit

Posted

Good work!

The best way you could improve your code right now is by looking into semantic HTML! Instead of wrapping your code in just divs try to use sematic elements such as <main>, <section>, and <ul>.

The reason you want to use semantic HTML is because divs have no semantic value! So when a browser looks at a div it has no context on what content is included inside. This can hurt accessibility and SEO. Also using a lot of divs can make it difficult for other developers to pick up where you left off on a project.

So in your code you could make the card with a <main> element and then wrap your links in a <ul> with <li> elements inside. Here is an example.

<ul>
   <li><a>Link</a></li>
</ul>

This will greatly improve your code.

Keep up the good work!

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