
Solution retrospective
- learning how to use local hosting fonts
- learning how to use box-shadow and what's every value in box-shadow property refers to
- using local host font "figtree" asking chat GPT how to set up a local host font
- dealing with responsive screens
Please log in to post a comment
Log in with GitHubCommunity feedback
- @lynaIFR
Congrats on completing this challenge, here are things you can improve:
- never use
px
forfont-size
, instead userem
. - any website is responsive by default, but when we set a value to the width of elements, that responsiveness will be affected, I saw in your code that you gave a value to the width of your elements, if you want for an element to have a proper size, give it a max-width.
- you used a flex display, that's good, use all of its properties to organize the space between your elements like
gap
, don't use padding and margin everywhere, that's bad practice and it will cause problems - in your html try using proper tags other than
div
, for the card content you could use thearticle
tag for exemple Overall you did a great job, keep going 😁
Marked as helpful - never use
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