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

Shushmita Ahmed
Shushmita Ahmed
154 Points

how to complete the html tag?

how do we change or complete a html tag? Can I get an example?

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

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

  </body>
</html>
styles.css
h1 {
  color: blue;
}

2 Answers

Andy Watts
Andy Watts
20,836 Points

I'm sorry, but after reading your question several tines, it is not making sense. The <html> tag is complete in your example. It ends with </html>

Rich Donnellan
MOD
Rich Donnellan
Treehouse Moderator 27,671 Points

As Andy stated, your question doesn't make any sense. Per the challenge referenced in your question, you're supposed to:

  1. Change the HTML paragraph tag to an h1 tag (e.g. <p> vs. <h1>)
  2. Change the color of the h1 tag to purple; switch to the styles.css tab

I suggest rewatching any videos if this is still unclear.