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 Introduction to HTML and CSS (2016) Adding a New Web Page Write the CSS

CJ Ruacho
CJ Ruacho
1,321 Points

https://teamtreehouse.com/workspaces/40966881# i cant link up my HTML to my CSS

wont change blue <!DOCTYPE html> <html> <head> <title>Cjs Resume</title> <link rel="stylesheet" hraf="Resume.css"> </head> <body> <img src="http://placeimg.com/200/200/any" alt="Cj, Web Developer"> <h1>Cj, Web Developer</h1> <h2>Summery of qualifcations</h2> <ul> <li>Experience as a freelance web developer</li> <li>Experience with HTML,CSS, and Java Script</li> <li>Self Taught</li> </ul> </body> </html>

2 Answers

Steven Parker
Steven Parker
229,644 Points

Live workspace URL's are temporary, but you can make a snapshot of your workspace to get a persistent one and post the link to it here.

Is your CSS file named "Resume.css" (with a capital "R")? The workspace system is case-sensitive, so if the actual name is "resume.css", it won't find it. If that's the case, change either name to match the other.

And if that's not it, post the snapshot link so we can investigate further.

Jamie Reardon
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jamie Reardon
Treehouse Project Reviewer

In your HTML, you have misspelled the link attribute href incorrectly.

You have:

<link rel="stylesheet" hraf="Resume.css">

It needs to be spelled as href not hraf, see below:

<link rel="stylesheet" href="Resume.css">

If that doesn't fix the problem, ensure you have read and followed Steven Parker's answer as well.