Design comparison
Solution retrospective
I'm glad I could practically do this challenge myself, I don't know what I could do differently in the future
What challenges did you encounter, and how did you overcome them?I had a slight problem with adapting the elements to the page, but the rest went ok
What specific areas of your project would you like help with?I need to learn the elements of the website and its responsiveness
Community feedback
- @rugarcia25Posted 9 months ago
CSS:
h2 { font-weight: 800; font-size: 24px; }
h2:hover { color: hsl(47, 88%, 63%); }
You should always try to respect the hierarchy of tags to maintain correct semantics. In this case, you should change the h2 to h1 and adjust the font size.
As an aside, if you look at the image of the active stats, when you hover over the title, the cursor changes, so it should be as follows:
h1:hover { color: hsl(47, 88%, 63%); cursor: pointer; }
I hope I've helped!
Marked as helpful1
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