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

external css

when i downloaded normalize.css and linked it with my html file the result didn't look like the instructors anyone else have this problem?

4 Answers

Peter Ramsing
Peter Ramsing
16,814 Points

In what order are you linking it? In most cases it should be the first stylesheet that you're linking to. Do you have some code you could show?

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title> Wolnie Stewart | Designer </title>
    <link rel="stylesheet" href="css/normalize.css">
    <link rel="stylesheet" href="css/main.css">
  </head>
  <body>
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title> Wolnie Stewart | Designer </title>
    <link rel="stylesheet" href="css/normalize.css">
    <link rel="stylesheet" href="css/main.css">
  </head>
Justin Sorensen
Justin Sorensen
14,734 Points

Could also be a new version of normalize.css since the tutorial video was recorded.

Make sure the css file is in the css folder in the file tree