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 trialAntonio Saenz
1,886 Pointsh1 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; }
1 Answer
Jamie Reardon
Treehouse Project ReviewerHi, 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
Antonio Saenz
1,886 PointsThank you!
Antonio Saenz
1,886 PointsAntonio Saenz
1,886 PointsSolved it! I just forgot to save all my files.