Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialalex mccurdy
1,183 Pointsnormalize.css does not seem to be connected to my html page.
After attaching normalize.css to my index.html it does not seem to be connected to my page. when i inspect the element in chrome and click on the sources tab it doesnt seem like its seeing the css page.
<link rel="sytlesheet" href="normalize.css">
3 Answers
Viktor Vaklinov
23,860 PointsMake sure that normalize.css and index.html are in the same directory. If this is not the case, then you will have to explicitly denote the relative path from index.html to normalize.css in the href attribute.
alex mccurdy
1,183 PointsThanks
Perry Eising
12,663 Pointsin your original code you have a spelling error:
<link rel="sytlesheet" href="normalize.css">
take a look at how you spelled stylesheet. That's probably the issue.
jason chan
31,009 Pointsjason chan
31,009 Pointsput that it in between your head tags; use cdns.
Make sure the css file is in the same directory or your code is directed to correct file location. I hope that helps.