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

h1 tag won't change color

I'm following the video, and see no errors in my code. But the css and html files don't link to each other.

<!DOCTYPE hmtl> <hmtl> <head> <title>Antonio Saenz's Resume</title> <link re1="stylesheet" href="resume.css"> </head> <body> <img src="https://placeimg.com/200/200/any" alt="Antonio Saenz, Ramen Enthusiast"> <h1>Antonio Saenz, Ramen Enthusiast</h1> <h2>Summary of Qualifications</h2> <ul> <li>I eat a lot of ramen</li> <li>Chili oil is bomb af</li> <li>Fried chicken expert</li> </ul> </body> </hmtl>

h1 { color: blue; }

Solved it! I just forgot to save all my files.

1 Answer

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

Hi, you also have mis spelt the html tags wrong, look at your <html> tags at the top of the page. The doctype and opening html and closing html at the bottom

Thank you!