Design comparison
SolutionDesign
Solution retrospective
any type of feedback is welcome
Community feedback
- @EileenpkPosted over 2 years ago
Hi Nishchay, congratulations on your project! it looks good. I would make a separate file for your CSS. You can add a link inside the head tag of your HTML that will connect the new CSS file to your HTML file. If the new file you create is called styles.css then the link should look like this -
<link rel="stylesheet" href="styles.css"> just make sure the name of the CSS file matches the name of your href. If you put your CSS file in a new folder that your index.html is not in add ./ to the beginning of your href address. All CSS files should end in .css just like all HTML files should end in .html . Separating our code like this is called separation of concerns it helps keep our code cleaner and easier to read and understand. Here is a link to an article if you want to read more about it. https://medium.com/@dennis.pintilie.alexandru/separation-of-concerns-soc-fd72b0191b1f Great job finishing your project and keep up the good work!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