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

JavaScript Treehouse Club - MASH MASH - CSS Connecting Style Sheets

I don't know what im doing wrong

I don't know how to link a stylesheet

index.html
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>MASH</title>

    <link href="css/normalise.css" rel="stylesheet">
    <link href="css/normalise.css" rel="stylesheet">

  </head>
  <body>
  </body>
</html>

2 Answers

thank you so much

Mike Hatch
Mike Hatch
14,940 Points

You have the right idea, but you misspelled the filename and added a folder location that doesn't exist here. Sometimes it's better to copy/paste in these instances. For Task 2, it's giving you a second CSS file with a different name to insert. If you delete the unexisting folder name and correct the spelling it will pass.