Design comparison
Solution retrospective
Feedback is appreciated
Community feedback
- @skyv26Posted almost 3 years ago
Hi! Johandry
To solve accessibility issues:
-
wrap everything in your body in <main> OR give role="" to the direct children of your <body> ... Click here to read more here
-
start your headings with <h1> and move up by one level each time, use heading only once for main heading, don't repeat your headings in one page.
-
Don't let alt attribute empty, always add some meaning text in it, so that user able to understand.
<img src="./images/illustration-woman-online-desktop.svg" alt="">
use below:
<img src="./images/illustration-woman-online-desktop.svg" alt="woman illustration image" />
and check that I add / at the end of img tag as self closed tag.
Good Luck ;)
1@DarKaRorPosted almost 3 years ago@skyv26 I don't fully understand the problem, I don't repeat the h1 heading, but I repeat the h2 for each one of the questions, is that the problem?
1 -
- @imadvvPosted almost 3 years ago
desktop version is good but you need to focus more in the mobile screen and Accessibility, Good job :
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