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 trialJoshua Graham
412 Pointslinking 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
5,831 PointsI'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.
austenpayan
10,218 PointsPost your code please =]
Joshua Graham
412 Pointstrying to figure out how without it actually reading the code. is there a trick for this?
Joshua Graham
412 Pointsthis is the little bit im working with.
<link rel="stylesheet" Href="CSS/normalize.css">
<link rel="stylesheet" Href="CSS/Main.css">
Joshua Graham
412 PointsThank you that fixed it...