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 How to Make a Website HTML First Use HTML Elements

Anthony Costanza
Anthony Costanza
2,123 Points

Bummer! Make sure you define the HTML tag for the document root.

Please help - I dont see whats wrong

index.html
<!DOCTYPE HTML>
<HTML>
  <head>
    <meta charset="utf-8">
    <title>Anthonys Project | Designer<title/>
      </head> 

Closing HTML Tag

</Html>

Gunhoo Yoon
Gunhoo Yoon
5,027 Points

Just need to close with </html>. Doesn't matter if you do </HTML> but it's better to be consistent

Anthony Costanza
Anthony Costanza
2,123 Points

Thank you all!! I just sunk my teeth into this programming stuff and trying to come up to speed - its great to know theres such a strong community out there for support!! Thanx again!!!

1 Answer

Hannah Gaskins
Hannah Gaskins
14,572 Points

Hey Anthony,

The code needs a closing HTML tag as well as the correct title closing tag. Here is code that should work:

<!DOCTYPE HTML>
<html>
  <head>
    <meta charset="utf-8">
    <title>Anthonys Project | Designer</title>
  </head> 
</html>

Let me know how this goes for you!

Cheers :)