Design comparison
SolutionDesign
Solution retrospective
Please provide feedback
Community feedback
- @mickygingerPosted over 4 years ago
Hey Aayushi,
This looks great, well done! 🎉
Careful with your code indentation. Your HTML is on point, but your CSS is a little hard to read. Aim to have one property per line, and a space between the selector and the properties:
h1{color:red;text-decoration:underline;} // not so good h1 { color: red; text-decoration: underline; } // much better!
For bonus points you can keep the properties in alphabetical order.
If you haven't tried SCSS or less yet, I'd recommend having a play with them on your next project. This freeCodeCamp tutorial is a great place to start!
1@iucsimPosted over 4 years ago@mickyginger code indentation yeah I will takecare of it in next project.
Thanks for your feedback
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