Design comparison
Community feedback
- @DORMODOPosted 4 months ago
Hi Roni, Great job on completing the challenge! π Your attention to detail.
A couple of suggestions for improvement:
1.Use Semantic Elements: Consider replacing the
div
withnav
for the social links section. This could enhance the accessibility and structure of your code. π<nav class="social-links"> <ul class="menu-links"> <li class="link__social"><a class="link" href="#">GitHub</a></li> ... <li class="link__social"><a class="link" href="#">Instagram</a></li> </ul> </nav>
2.Use
figcaption
for Descriptive Text: Moving theh1
, location, and description into afigcaption
within the figure tag can improve semantic meaning and accessibility. π‘<figure class="presentation__figure"> <img src=""> <figcaption class="presentation__caption"> ... </figcaption> </figure>
Youβre doing an incredible job, and each project you complete is a step forward. π Keep pushing your limits and experimenting with new techniques.
Keep up the fantastic work! π
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