Design comparison
SolutionDesign
Solution retrospective
I complete this challenge using html and css Please share your feedback
Community feedback
- @tedikoPosted over 3 years ago
Hello, TechnoSolution! 👋 Congrats on finishing another challenge! Your solution looks very good and also responds well. Here's my few tips:
- Change the
alt
attributes for the.logo
, and.illustration
as they don't add any extra context for screen reader users. Since your images are decorative youralt
text should be provided empty (alt="") so that they can be ignored by assistive technologies. - You shouldn't using descendant selectors like this
.social-list ul li i
. It will lead to problems later on if you want to overwrite something in your code. Instead add class to element you want style. - First icon circle isn't perfectly rounded. This is because you apply border on icon, instead of parent element with set width/height. And since your icons have diffrent weight/height your border circle isn't same for all of them.
Good luck with that, have fun coding! 💪
0 - Change the
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