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! :)Also, with accessibility, you cannot skip headings. Change your
h3
tag to anh1
and stylize the text from there. That will resolve the final accessibility issue!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.Check out this Headings Documentation
Hope that helps! Great work!
Steven
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