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

I unable to link my html code to css.

HTML CODE: <!doctype html> <html> <head> <title>Vamshi's resume</title> <link rel="style sheet" href="resume.css"> </head> <body> <img src="https://placeimg.com/400/400/people",alt="Vamshi,web developer"> <h1>Vamshi web developer</h1> <h2>Summary of the qualifications</h2> <ul> <li>Experience as a free lance web developer</li> <li>Experience as a back end developer</li> <li>Bachelor's in Computer Science</li> </ul> </body> </html> CSS CODE: h1 { color:blue; } when i tried to link the html code with css it wasn't popped up in blue color ,it doesn't worked.Please help me out.

1 Answer

Notice that you have written <link rel="style sheet" href="resume.css">

Write "stylesheet" instead of "style sheet"

I believe this will fix your problem

Excellent Tom Achki.I got it.Thank you so much.