Submitted about 3 years ago
[Responsive] Testimonials grid section layout - Using HTML & CSS
@Manojraj07
Design comparison
SolutionDesign
Solution retrospective
Take a quick look & share your thoughts :)
Community feedback
- @dewslysePosted about 3 years ago
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 helpful1@Manojraj07Posted about 3 years agoHello @dewslyse! Thank you for reviewing my work. Especially for the feedback. As a newbie, It's very helpful for me.
I have completed suggested additions/changes. Hope you will get a chance to review again. :)
Happy coding!
1@dewslysePosted about 3 years ago@Manojraj07 solution looking better. All the best with subsequent challenges.
1 - In the design, the background colour is applied to the
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