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

CSS

Css normalize

Im a begginer and its says to download http://necolas.github.io/normalize.css/2.1.0/normalize.css i downloaded it but not sure what to do with it now

2 Answers

It's can be really tricky to understand when you start. I remember spending ages trying to get this to work, Adam is right you need to add a link to the .css file. You do this in the head section of your .html file, I put it just under the title tags.

Looks like this a bit

<head>
<title>My Webpage</title>
<link rel="stylesheet" type="text/css" href="normalize.css">
</head>

Just remember to keep it in the same folder as your HTML file. As you add more style sheets (.css files) you'll find you need to organise the folder a bit like you would your documents. Hope that helps?

Adam Moore
Adam Moore
15,825 Points

add it to your project with a <link> tag. Put it above your own CSS linked on your page.