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 trial

HTML How to Make a Website Creating HTML Content Include External CSS

alex mccurdy
alex mccurdy
1,183 Points

normalize.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">
jason chan
jason chan
31,009 Points
<head>
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" />
</head>

put 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.

3 Answers

Viktor Vaklinov
Viktor Vaklinov
23,860 Points

Make 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.

in 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.