Design comparison
SolutionDesign
Community feedback
- @ondicksonPosted about 2 years ago
To fix the accessibility issues
- change <div class=""container"> to <main class="container">
- Change <h2 class="title"></h2> to <h1 class="title"></h1>
- change <h5 class=""> to <h2 class=""> or a div element and give it a class. eg <div class="annual"></div>
also noticed there's no space between the p element and plan-box div/class you can solve that by adding margin-bottom to the p element in your css.
<main class="container"> <h2 class="title">Order Summary</h2> <h5>Annual Plan</h5> <p>$59.99/year</p> </main> </body>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