Design comparison
Solution retrospective
• Proud of: Made this Project quicker than my previous projects. Learnt alot to do with blog and profile type solutions. Implemented Media Queries to make site responsive.
• What I would do differently next time: I would try to deep dive more into responsive web design for now. Later learn about CSS grids and some advanced Flex properties.
What challenges did you encounter, and how did you overcome them?• Challenge: No as such challenges were encountered but there could be mistakes in the code. Review and help if u can. Thanks!
What specific areas of your project would you like help with?This Project was somewhat similar to the Blog project so it was a little easier to do. Responsiveness was my main goal and I somewhat achieved it I guess. Feedback to improve my code to make it more efficient and responsive would be greatly aprreciated.
Community feedback
- @danielmrz-devPosted 6 months ago
Hello there!
Congrats on completing the challenge! ✅
Your solution looks great!
📌 It's recommended to use semantic HTML elements like
<ul>
and<li>
for creating lists. This ensures that your code is more accessible, maintainable, and semantically meaningful.Here's and example on how you can refactor your code:
After Refactoring
<ul class="list-container"> <li><a href="#">Github</a></li> <li><a href="#">Frontend Mentor</a></li> <li><a href="#">LinkedIn</a></li> ... </ul>
By using
<ul>
and<li>
, you convey the structure of your content more clearly, making it easier for screen readers and search engines to understand. Additionally, it aligns with best practices for HTML semantics.I hope you find this helpful!
Keep up the excellent work!
1@Aayan16Posted 6 months ago@danielmrz-dev Thanks for the feedback :) I’ll be sure to implement it in my code and remember in future too.
1
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