Design comparison
Community feedback
- @javascriptoooPosted over 2 years ago
Given the accessibility issues -- you need to include at least the
<main>
landmark.The
<main>
landmark tag can be inserted around your content inside the<body>
. Here is some documentationAdding the
<main>
landmark will remove 2 accessibility issues! :)Headings are used by screen readers for people to navigate the page. An
H1
is the main topic. So users can jump to it. If you have multiple headings, the user can skip them in screen readers.That should take care of the final accessibility issue.
Check out this Headings Documentation
Hope that helps! Great work!
Steven
Marked as helpful1@Benji003Posted over 2 years ago@javascriptooo thanks a lot, I'll make the necessary corrections and implement them.
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