Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
I am proud that I did this and will think of doing even better next time.
What challenges did you encounter, and how did you overcome them?I did not face any challenges because I have good knowledge of HTML and CSS.
What specific areas of your project would you like help with?To further improve frontend skills.
Community feedback
- @Alex-Archer-IPosted 5 months ago
Hi! Well done, it's quite an accurate work =)
I can give you a couple suggestions:
- Use
rem
values for font-size. It's a special value which depends of user's font setting. By default1rem = 16px
- You can use flex to center this card inside the
body
tag.
body { display: flex; align-items: center; justify-content: center; }
- Your work have
h3
tag but haven'th1
. It'll better if you add one because of the semantic. - Also add
main
tag because of the same thing. - Try to separate styles from html file. This will be especially important in big project.
Hope that helps =) Good luck, happy coding =)
Marked as helpful0 - Use
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