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 is saying that i have not created a meta tag for my html document.... though I have

Could anyone check my code and let me know if it is wrong

index.html
 <!Doctype html> 
  <html> 
    <head> 
      <meta charset="utf-8" 
       <title> Billy Maze | wtfyn </title>
      </head> 
    <body>
      <header>  
        <h1> Billy Maze  </h1>
        <h2> WTFYN in life    </h2>    
      </header>
      <section> 
        <p> Galler goes here </p> 
      </section> 
      <footer>&copy; 2018 America fuck yeah Billy fuckin maze here bitch </footer>
    </body>
















</html> 

2 Answers

Stuart Wright
Stuart Wright
41,118 Points

You are just missing a > at the end of your meta tag. All tags need to open with a < and end with a >.

<meta charset="utf-8">

Wow...... I'm a moron lol thankyou very much.

Jack Weldon
Jack Weldon
1,708 Points

It's an easy mistake to overlook, opening and closing brackets will be the bane of your code.