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) Getting Familiar with HTML and CSS Test: Changing the Look of a Web Page

how do you change the colour of a h1 tag

introduction of HTML and CSS Challenge task 2 of 2

index.html
<h1>
<html>
  <head>
    <link href="styles.css" rel="stylesheet">
  </head>
  <body>

    <p>Welcome to My Web Page!</p>

  </body>
</h1>
styles.css

1 Answer

lihaoquan
lihaoquan
12,045 Points

Task: 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;
}

Just with purple not red :-)