Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Jeremy Wells
1,049 PointsHow do I change the color of the H1 tag?
<h1> class ="tag location > "Where is Scooby Doo?" </h1> .location {color: purple}
<!doctype html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<h1> class = "location > Welcome to My Web Page!</h1>
</body>
</html>
.location
{color: purple;}
3 Answers
redcamel2
4,749 PointsYou want to put a closing quotation mark in your h1 and put the class declaration in your opening h1 tag like this.
<h1 class ="location"> Welcome to My Web Page!</h1>

Jeremy Wells
1,049 PointsThank you
redcamel2
4,749 Pointscan you add best answer pls?

Jeremy Wells
1,049 PointsI did what you mentioned. It still doesn't give me a correct answer.. also in the question they ask you not to use quotes?
I'm not sure what you meant by posting best answer..

Finlay Schlieper
6,935 Points<h1 class ="location"> Welcome to My Web Page!</h1> Try this

Jeremy Wells
1,049 Points<h1 class ="location"> Welcome to My Web Page!</h1>
Jeremy Wells
1,049 PointsJeremy Wells
1,049 PointsCan anyone show me how to change the H1 color to purple? I followed along with the video but I'm confused on how to get this right. I made an attempt by using the class and location .