Design comparison
SolutionDesign
Community feedback
- @MaracaraCarlosPosted 4 months ago
Hello Ravi, congratulation for complete de challenge. There are a couple of things you can do to improve your code:
- In the links you can place the class
cursor: pointer;
this will cause every time the mouse cursor passes over your button the hand will appear pointing to the element. You can also add transitions with the :hover pseudo element - To make your HTML semantic you can use
<section>
,<main>
,<header>
instead of<div>
. Semantic HTML5 Elements Explained - You can use
rem
instead ofpx
for thefont-size
dimensions of this text to adapt better to browsers and devices. Why font-size must NEVER be in pixels
Marked as helpful0@ravijabade12Posted 4 months agoThank you @MaracaraCarlos for your suggestion. I will make sure of these things in my next projects.
0 - In the links you can place the class
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