Design comparison
SolutionDesign
Community feedback
- @Federico-SalernoPosted 8 months ago
good job! To improve it even more you could add the following parameters in a universal selector in your CSS style sheet so that it is centered and with a top and bottom margin:
* { margin: 0; padding: 0; box-sizing: border-box; }
You can also change the font to be similar to the challenge:
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap'); body { font-family: 'Inter'; }
then you must place the label
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet">
inside the
<head>
tag in your .html file0
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