Design comparison
Solution retrospective
I am open for any feedback... thank you
Community feedback
- @iammukeshmahatoPosted over 2 years ago
Hi Michael,
Your work looks pretty good. There is an accessibility issues generated by Frontend Mentor. It is generated because you have used <h3> tag, Your page should contains at least a level-one heading i.e <h1> tag. And then set the font size according to the design in style.css.
Your can fix this issue by simply replacing you <h3> tags with <h1> tag.
Your image height is smaller than the design, it should be
height: 288px;
It would be better if you add box-shadow to the card. you can add box-shadow as
box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.2);
You can have a look to my solution. Click Here for live preview of my solution.
If you have any doubts or questions, feel free to ask.
Keep Coding!
Marked as helpful0@Mike-DavePosted over 2 years ago@mukeshmahato843 Thank you on your feedback, I will look into your solution and make amends. Sure when I have a question, I will kindly ask you. Enjoy your evening!.
0 - @tyihaoPosted over 2 years ago
Hi Michael, great work! I noticed that you used semantic HTML tags like <main> and <section>, which are good practice for code readability and also ease of accessibility (for e.g. using screen readers). I noticed that you used <h3>, you should always use the heading tags in order of importance, thus <h1> first in this case and then adjust the font size according to your needs in the styles.css file. Otherwise a very clean and neat job!
Marked as helpful0@Mike-DavePosted over 2 years ago@tyihao Thank you very much, I will start applying it from now. I really do appreciate.
0
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