Design comparison
Solution retrospective
Hello there! I've been learning JavaScript for a week now and came out with a solution of this challenge :) Let me know what you think about it! Have a good evening everyone! :)
Community feedback
- @KarimAyman97Posted 10 months ago
hi Filip Janik great work you did. I have some accessibility and semantics recommendations for you.
1- try to change
<div class="faq">
to a<main class="faq">
,<div class="faq__title">
to a<header class="faq__title">
and<div class="questions">
to<section class="questions">
this does not affect your project visually but it improves SEO optimization as well as the accessibility of your project.
2- try to avoid <hr> Consider using CSS to style borders or margins to separate questions .
3- Since you have repeated image tags, you can group them together for better readability.
<img class="plus-icon" src="./assets/images/icon-plus.svg" alt="Question Plus Icon" />
<img class="minus-icon" src="./assets/images/icon-minus.svg" alt="Question Minus Icon" />
I hope it helps!
Other than that, great job!
Marked as helpful0
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