
Design comparison
Community feedback
- @bhuvi819381Posted 3 months ago
Hello friend,
Great work there! 👏 Your solution looks amazing. Here are a few suggestions to make it even better:
-
Always provide an
alt
attribute for images
Avoid leaving thealt
attribute blank as it helps with accessibility and SEO. -
Use only one
<h1>
tag per page
This ensures better document structure and accessibility. -
Avoid using
px
for units
Instead, use relative units likeem
orrem
for better scalability and responsiveness. -
For centering content, use the following CSS
* { margin: 0; padding: 0; box-sizing: border-box; } body { height: 100vh; display: flex; justify-content: center; align-items: center; margin-inline: auto; }
Implementing these changes will make your project even more polished
Keep it work 😁
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