Design comparison
SolutionDesign
Community feedback
- @davinceeyPosted about 2 years ago
Hello Mazz Ghani. Congratulations on your first project! Some tips for you:
-
You might want to wrap your entire code with the
<main>
tag. You can also use<section>
tags to partition your layout. This would improve Accessibility. -
You made so much use of
h4
andh5
which was not good HTML code practice. You should instead use theh1
tag as it obeys HTML order hierarchy. -
You can as well apply this to the body tag:
body{ display: flex; justify-content: center; align-items: center; min-height: 100vh; }
This would help in centralizing your project.
Hope this helps you. Happy coding!
Marked as helpful1 -
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