Design comparison
SolutionDesign
Community feedback
- @anoshaahmedPosted almost 3 years ago
To avoid accessibility issues in the future:
- add language to html like so:
<html lang="en">
- add
<title>
- wrap everything in your body in
<main>
OR giverole=""
to the direct children of your<body>
... Click here to read more - give ur
<img>
analt=""
<li>
should be part of<ol>
or<ul>
Good job! :)
0 - add language to html like so:
- @skyv26Posted almost 3 years ago
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
-
<a> should have an aria-label ... Click here to read more here put <li> inside <ul> or <ol>
-
Use lang attribute in html tag like below'
<html lang="en">
- Don't let alt attribute empty, always add some meaning text in it, so that user able to understand.
Good Luck ;)
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