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 trialNicole Schwegman
353 PointsCan't find my mistake in the code to link css and html file
I wanted to test to see if my css and html file was linked. I can't seem to find the mistake that won't link them. Please take a look at my screenshot and see if you can find the mistake.
1 Answer
Jennifer Nordell
Treehouse TeacherHi Nicole! You're missing a couple of equals signs. You've typed this in your links to the stylesheets:
<link rel "stylesheet" href="css/normalize.css">
<link rel "stylesheet" href="css/main.css">
That should be:
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
Note the addition of equals signs between rel
and "stylesheet"
. Hope this helps!
Nicole Schwegman
353 PointsNicole Schwegman
353 PointsYes totally! I swear I was going cross-eyed trying to figure out what I was missing. Thank you so much!