Design comparison
Solution retrospective
Responsive
What challenges did you encounter, and how did you overcome them?min-width
What specific areas of your project would you like help with?Code Review!
Community feedback
- @grace-snowPosted 6 months ago
A few more pointers
- don't skip heading levels (h1 to h5. Heading levels have nothing to do with size, and everything to do with meaning (semantics).
- this design actually only has one heading. London isn't a heading for all those links. It's just a paragraph.
- the links should be in a list
- the card shouldn't have a min width it should have a max width.
- Everything in your solution looks smaller than the design. But some of the text in this is tiny! Like I can't read it that small.
- there is no need for a media query in this challenge.
- only use flexbox when you actually need it.
- instead of using complex css selectors like direct child selectors, try to keep the specificity as low as possible. Place classes directly on what you want to style.
0 - @0xabdulkhaliqPosted 6 months ago
Hello there π. Congratulations on successfully completing the challenge! π
- I have a suggestion regarding your code that I believe will be of great interest to you.
MAKING ACCESSIBLE LINKS:
- The links like
Github
,Frontend Mentor
are needed to be are wrapped up usingli
andul
elements. It improves the accessibility of your solution with good semantics.
- This is the current markup,
<div class="social_links"> <a href="#">GitHub</a> <a href="#">Frontend Mentor</a> ... </div>
- In order to make this solution accessible, we need to use
<a>
elements withhref
attribute. Here's the example
<ul class="social-links"> <li> <a href="#">Github</a> </li> <li> <a href="#">Frontend Mentor</a> </li> ... </ul> ....
- If you have any questions or need further clarification feel free to reach out to me.
.
I hope you find this helpful π Above all, the solution you submitted is great !
Happy coding!
0@0xabdulkhaliqPosted 6 months ago@Zehn77 Glad you found it helpful ! π€
0 - @MineshayePosted 6 months ago
Pls how did you align the card at thr cecter vertically,I did that with align items center but it did'nt work.
0@Zehn77Posted 6 months ago@Mineshaye display: flex, align-items: center, justify-content: center; You can see it, on the github proejct: https://github.com/Zehn77/-Social-links-profile
1@MineshayePosted 6 months ago@Mineshaye I should have changed the height the page to 100vh .
0
Please log in to post a comment
Log in with GitHubJoin 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