Design comparison
SolutionDesign
Solution retrospective
This was my first actual project so I did find it quite difficult. I'm not sure how clean my code is but hoping for the best
Community feedback
- @burrijwPosted over 1 year ago
Hi Caleb! This is a really, really strong start! 💪🏻
- Make sure you have landmarks, especially
<main>
. - You can get away with less markup. No need to wrap things in a div unless it’s for a particular purpose. All you need on this one is:
<body> <main> <img /> <h1>...</h1> <p>...</p> </main> </body>
- Use padding for space inside of a component, and margin for space around it. You have margin around the image when all you really need is a consistent padding inside the card.
- Font sizing might be a little off to my eye. Double check it if you care to. 🙂
Marked as helpful0 - Make sure you have landmarks, especially
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