A simple landing page with the Card component

Solution retrospective
I think using CHATGPT to answer questions is wonderful. You save time and end up being more assertive in solving your problem. This is very practical.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @MelvinAguilar
Hello there 👋. Good job on completing the challenge !
I have some suggestions about your code that might interest you.
- The link to the Github repository is incorrect :(
HTML 📄:
- Wrap the page's whole main content in the
<main>
tag.
- The
alt
attribute should not contain underscores or hyphens, it must be human readable and understandable. An "alt" attribute's purpose is to provide more information to screen reader users by being read by the technology rather than being interpreted as code.
CSS 🎨:
- Use
min-height: 100vh
instead ofheight: 100vh
. Theheight
property can cause your component to be cut off on small screens, such as a mobile phone in landscape mode.
I hope you find it useful! 😄 Above all, the solution you submitted is great!
Happy coding!
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