Submitted over 2 years ago
Frontend Mentor QR code component Darioriverosp
@darioriverosp
Design comparison
SolutionDesign
Community feedback
- @DarrickFauvelPosted over 2 years ago
Hi @darioriverosp, π
Congratulations on posting your first solution! π₯³
To fix the accessibility issues in the accessibility report (above β¬οΈ), you need to use at least one semantic html element. I would suggest wrapping your
.card
element with a<main></main>
element. Also, you can do the same with<footer></footer>
around the.attribution
element.I would also recommend moving the
.container
to inside these "landmarks". Try something like this:<main> <div class="container"> <div class="card"></div> </div> </main> <footer> <div class="container"> <div class="attribution"></div> </div> </footer>
I hope this is helpful. π
Marked as helpful0
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