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 CSS: Cascading Style Sheets Use ID Selectors

Wont link with index.css.

<head>
    <meta chrset= "utf-8">
    <title>Derin Bali | Writer</title>
  <link rel="stylesheet" href"css/normalize.css">
  <link rel="stylesheet" href"css/main.css">
 </head> 

I believe the code is correct. I did go into my browser's developer tools to see if it is picking up the sources for my links and there are two items listed there. Index,my main file, and a folder named img. So.....yeah. Help?

2 Answers

Kevin Korte
Kevin Korte
28,148 Points

Hi Derin,

I noticed you are missing your = sign after your href on both attempts to link a stylesheet.

Try

<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">

Also,just uploaded a preview.

So much for the "i believe the code is correct"....i swear.Anyways, thanks you! = was the issue.

Kevin Korte
Kevin Korte
28,148 Points

No worries, you code wasn't wrong, you just had omitted some syntax that created the error. I do it all the time myself. It's an incredibly common problem...just wait until you have to hunt down the missing ; in a javascript file! :)