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.

Dara Keane
912 Pointshow do you change the colour of a h1 tag
introduction of HTML and CSS Challenge task 2 of 2
<h1>
<html>
<head>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<p>Welcome to My Web Page!</p>
</body>
</h1>
1 Answer

lihaoquan
12,045 PointsTask: Change the HTML Paragraph tag to an h1 tag.
You've misunderstood the task, you are supposed to change the p tag into h1 tag.
What you did here was a taboo. No tags should be able to wrap the html, head, and the body tag.
Take note : All contents ( paragraphs, texts, images, etc ) of a website should be inside the body tag.
Correct answer for index.html :
<h1>Welcome to My Web Page!</h1>
Correct answer for style.css :
h1 {
color: red;
}
bothxp
16,509 Pointsbothxp
16,509 PointsJust with purple not red :-)