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

Steve Caprarola
Steve Caprarola
436 Points

When I pull up the website matching my work in workspace, the CSS changes in the video are not there in mine. Why?

I have completed the line exactly as it is in the video, but those same style changes don't happen in my website.

Hi Steve,

What changes aren't happening?

Also, post the code that you have added.

Use this as a guide: https://teamtreehouse.com/forum/posting-code-to-the-forum

Steve Caprarola
Steve Caprarola
436 Points

I am sure I added the same language as in the video.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Steve Caprarola | Designer</title>
    <link rel="stylesheet" "href=css/normalize.css">
  </head>

I went ahead and fixed your code formatting for you but please see the link I gave for how to post code in the forums.

2 Answers

You have misplaced your quotes around normalize.css

This:

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

should be:

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