Design comparison
SolutionDesign
Community feedback
- @bccpadgePosted 10 months ago
Hello @Rylulu. Congratulations on completing this challenge!!!🎉
I few tips you might be interested in to improve your solution.
Add
font-family: "Outfit", sans-serif;
on<main>
tag and it will look like the design in the starter files.Your
h1
andh2
use the samefont-family
and you can implement DRY principle - Don't Repeat Yourself Example:h1, h2{ font-family: "Young Serif", serif; } h1{ font-size: 2.5rem; color: var(--boldcolor); } h2{ color: var(--headcolor); font-size: 2rem; }
CSS 🎨:
- You can also add
margin:0;
andpadding:0
along with the
* { box-sizing: border-box; }
Here is my solution to this challenge Recipe page
I hope you find this useful and don't hesitate to reach out if you have any questions
Marked as helpful0 - You can also add
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