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

It states that I should not forget a header tag, while it looks the exact same way as in the lesson/tutorial.

Can somebody notice something I did wrong here? I can't seem to figure it out. Thanks guys

index.html
<!DOCTYPE html>
<html>
  <head> 
    <meta charset="utf-8">
    <title> Fauxbode</html>
  </head>

  <body>
    <header>
      <h1> Fauxbode</h1>
    </header>

    <section></section>
    <footer></footer>

  </body>


</html>
J.D. Sandifer
J.D. Sandifer
18,813 Points
<title> Fauxbode</html>  <!-- This should end with </title>, right? Looks like it's just a simple typo. -->

3 Answers

Sean T. Unwin
Sean T. Unwin
28,690 Points
<!-- There is an error here -->
<title> Fauxbode</html>

I'm not sure how this passed the 'add a title tag' part of the challenge, but there you go. :)

Ray Moreton
Ray Moreton
2,952 Points

I found a good tip when I was new is to close the tag of your editor doesn't already do it. Then stick the rest of the code on its own line. This way you don't forget the closing tag.

It works, thank you very much guys! I'm new to coding, so bare with me lol