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 trialJeremy 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,751 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,751 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 .