
Design comparison
SolutionDesign
Solution retrospective
What specific areas of your project would you like help with?
I need to know how to think when you start doing the Css part ?What are the things that will always need to set initially ?
Community feedback
- @alaa-mekibesPosted about 2 months ago
Well done 🎉
- Update Your README File
Start by using the provided README template included in the starter file. Customize it to enhance clarity and professionalism.
- Use semantic HTML elements for better structure and accessibility. For example:
<body> <main> <!-- Your code --> </main> </body>
- Use css variables to improved maintainability like this:
:root { --bg-color: hsl(210, 46%, 95%); /* Add your other colors here */ } body { background-color: var(--bg-color); /* Other properties */ }
Fantastic progress, keep going, you're doing brilliantly!
Marked as helpful0
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