
Solution retrospective
Finished this challenge in less than an hour. My biggest worries are if my CSS is structured correctly and the way I implemented responsive is correct(or are their more efficient ways of doing it?). Also if my practice of using h1,h2,h3 is good, should I just use classes instead of changing the designs of every h1,h2,h3 element?
Please log in to post a comment
Log in with GitHubCommunity feedback
- @Abbassher55
Your solution look great. I have point out that in design when the card is in active or hover state the drop-shadow increases to 16px from 8px in both x and y directions which looks like the card pops up.
Apart from this your solution is awesome 👍
Marked as helpful - P@danielmrz-dev
Hello @tbeagle2!
Your project looks excelent!
Since you're wonderinhg about the usage of <h1> to <h6> headings:
It's not just about the style or the size of the text.
The
<h1>
to<h6>
tags are used to define HTML headings.<h1>
defines the most important heading.<h6>
defines the least important heading.Only use one
<h1>
per page - this should represent the main heading/subject for the whole page. Also, do not skip heading levels - start with<h1>
, then use<h2>
, and so on.I hope it helps!
Other than that, I think your solution is awesome!
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