Design comparison
Solution retrospective
Thanks for checking out my solution. If you have anything on your mind, please feel free to comment. Thanks to frontendmentor platform for this opportunity.
Community feedback
- @EileenpkPosted almost 2 years ago
Hi Alex, congrats on your first Frontend Mentor project!!!! πππ Your project looks great and very clean. I did notice something small when I was looking at your HTML and I thought it might be helpful to point it out. Your
<main class='container'></main>
is this outer wrapper correct? You then have a<div class='card'></div>
that is inside that main tag. When you closed off<main>
, the closing tag of the</div>
should be inside the</main>
tag for proper nesting and readability. This will also help prevent bugs. It should look like this-<main class='container'> <div class='card'> </div> </main>
Hope this helps! If you found this helpful please mark it as such :)
- Let's connect on LinkedIn! - @Eileenpk
Marked as helpful0@GoodAlex223Posted almost 2 years agoHello Eileen, thanks for your comment! I really closed the tag in the wrong place, overlooked) Thank you again, next time I will be more careful!
0
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