
Please log in to post a comment
Log in with GitHubCommunity feedback
- @Alex-Archer-I
Hi!
Great work, congrats =)
I can give a couple suggestions of how you can improve it =)
At first about semantic. When the
header
tag is on the top level of the page (I mean it didn't nested inside another tag exceptbody
he has a special semantic meaning. It is the part of the site that repeated on every page and often it contains navigation menu, site logo and stuff. So, the header shouldn't containh1
,p
etc. All content in this project should be insidemain
(you can useheader
insidemain
though).Also there is a list of links here, so you should use
ul
tag alongside with theli
.And a couple of words about responsiveness. Percentages could be a very tricky values so I suggest you to use them only if you 100% (yeah, percentages =)) sure that you need them. For example your card now takes 50% of the width of the screen. And while there are a huge various of devises it could looks weird sometimes. That also goes for inner content which takes their percentage from container.
I suggest you to use
max-width
withrem
for your container. That way it'll keep it's width on the wide screens and would shrink on the small ones.Hope that could be helpful =)
Marked as helpful
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