Design comparison
SolutionDesign
Community feedback
- @anoshaahmedPosted almost 3 years ago
To get rid of the accessibility/HTML issues shown in your Report wrap everything in your body in
<main>
OR giverole=""
to the direct children of your<body>
... Click here to read moreGood job! :)
Marked as helpful1 - @skyv26Posted almost 3 years ago
Hi!
To solve accessibility issues:
- Either Change your code
FROM
<div class="attribution"> Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by <a href="https://github.com/Jorge-Guedes" target="_blank">Jorge Guedes</a>. </div>
TO
<footer class="attribution"> Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank" aria-label="challenged by">Frontend Mentor</a>. Coded by <a href="https://github.com/Jorge-Guedes" target="_blank" aria-label="developer-name">Jorge Guedes</a>. </footer>
OR you can simply add role="footer" attribute in your existing code. but don't forget to add
aria-label
attribute as I added above.Happy New Year ;)
Marked as helpful1
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