Blog preview card using plain html-css

Solution retrospective
That i was able to achieve a result that is pretty close to the original design.
What challenges did you encounter, and how did you overcome them?Resizing font without using media queries, but luckily i discovered clamp() by doing some research.
What specific areas of your project would you like help with?Not sure, please take a look and let me know how i can do better, I'm 100% open to constructive feedback.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @feimb
Consider moving the
"Figtree"
font declaration to thebody
selector instead of repeating it in multiple classes like.figtree-extra-medium
and.figtree-extra-bold
. This way, the entire page uses the font by default, and you only need to adjust thefont-weight
where needed.body { font-family: "Figtree", sans-serif; }
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