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

CSS How to Make a Website CSS: Cascading Style Sheets What is CSS?

linking the normalize and main.css not working

During the lesson I was trying to link my normalize.css and my main.css using <link rel="stylesheet" Href="CSS/normalize.css"> <link rel="stylesheet" Href="CSS/Main.css"> however it does not. any ideas as to why? ive checked the code 3+ times and it doesnt seem to work.

5 Answers

christopher smith
christopher smith
5,831 Points

I've found it to be case sensitive so you might want to check that. Changing my main.css to Main.css in my link broke it since my filename was lowercase.

Post your code please =]

trying to figure out how without it actually reading the code. is there a trick for this?

this is the little bit im working with.

<link rel="stylesheet" Href="CSS/normalize.css">
<link rel="stylesheet" Href="CSS/Main.css">

Thank you that fixed it...