Design comparison
SolutionDesign
Community feedback
- @Ofcl-JavedPosted 12 months ago
This Project really help me learn about accessibility issues and how to use aria and role with html5 semantics. The page seems easily doable but to make able to access by all user even when the navigate through keyboard or screen reader is a great exercise. Really like the project and learn that
- If you can avoid using div, use something semantic like frontend mentor gave you attribution with a div
<div class="attribution" aria-label="Challenge by and author information" > Challenge by<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by<a href="https://github.com/ofcljaved" target="_blank">ofcljaved</a>. </div>
but you can change it to
footer
tag to implement semantic and get rid of accessibility issue like this<footer class="attribution" aria-label="Challenge by and author information" > Challenge by<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by <a href="https://github.com/ofcljaved" target="_blank">ofcljaved</a>. </footer>
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