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 trialSteve Caprarola
436 PointsWhen 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.
Steve Caprarola
436 PointsI 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>
Jason Anello
Courses Plus Student 94,610 PointsI 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
Jason Anello
Courses Plus Student 94,610 PointsYou have misplaced your quotes around normalize.css
This:
<link rel="stylesheet" "href=css/normalize.css">
should be:
<link rel="stylesheet" href="css/normalize.css">
Steve Caprarola
436 PointsThanks!
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 PointsHi 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