Design comparison
SolutionDesign
Community feedback
- @Victor-NyagudiPosted almost 2 years ago
Hi.
Nice try on this one.
The errors in your HTML validation report are because you used a
<p>
tag inside a<q>
tag. This is in the testimonials.Here's a sample of your HTML code where you did this.
<div class="info"> <h2>Colton Smith</h2> <p class="pink">Verified Buyer</p> <q><p>"We needed the same printed design as the one we had ordered a week prior. Not only did they find the original order, but we also received it in time. Excellent!"</p></q> </div>
It's supposed to be the other way around - a
<q>
tag goes inside a<p>
tag. Making this change should get rid of the HTML validation report errors.All the best with future solutions.
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