[Responsive] Testimonials grid section layout - Using HTML & CSS

Solution retrospective
Take a quick look & share your thoughts :)
Please log in to post a comment
Log in with GitHubCommunity feedback
- @dewslyse
Hello @Manojraj07! Nice work on your submission. Your page is responsive. Well done. Some things to note:
- In the design, the background colour is applied to the
body
. Your solution has it set on the.container
. - You could centre content to the page by adding the following to the
body
in css.
body { display: flex; justify-content: center; align-items: center; min-height: 100vh; }
- Your page is missing an
h1
. For accessibility reasons, pages require one h1 element. For the nature of this challenge, you could add an h1 e.g:<h1>Testimonial grid section </h1>
, visually hidden on screen but visible to screen readers. You can use this post as a reference.
Happy coding!
Marked as helpful - In the design, the background colour is applied to the
Join 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