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 Creating HTML Content Include External CSS

The normalize.css file isn't adding into my Workspace for some reason. Any clue as to why and how I can fix that?

The normalize.css file isn't adding into my Workspace for some reason. Any clue as to why and how I can fix that?

2 Answers

Wayne Priestley
Wayne Priestley
19,579 Points

If your having problems with normalize, the best solution is to goto this page. Copy the code, then create a new file in workspaces called normalize.css and paste the code into it, you now have the normalize file to link to your html.

Thanks a lot Wayne. This is what I was looking for

I have the same problem. I made a css file normalize css and copied the complete content of this page inside the created file. Nothing happens. And yes, I made the link elements in html:

<html> <head> <meta charset="utf8"> <title>Anouk Lejeune | photographer</title> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/main.css"> </head>

Hey Samit,

You should be able to see the normalize file in your folder on the left of the workspace.

If you add the normalize stylesheet before your main stylesheet, it should work.

Example:

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

There's also this Treehouse video that explains how to set it up:

https://teamtreehouse.com/library/quick-tips/applying-normalizecss-browser-reset-css

Let me know if this helps,

Jacob

It's the first portion. I've downloaded the file (though it only shows up as 3KB, which seems wrong), but then even trying to drag and drop the file into the workspace isn't working. Nothing happens. This actually happened with images in the steps above as well, so I simply just used some images that I had saved on my desktop in lieu of those. Could there be an issue with the files attached to the site?