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

Robyn McComb
Robyn McComb
553 Points

It is asking me to add a meta tag to the head tag but I already added <mta charset="utf-8">. What do I do?

I get a "Bummer, add meta tag to head tag" when I check my code. I already did and it looks fine in the preview.

index.html
<!DOCTYPE html>
<html>
  <head>
   <mta charset="utf-8">
    <title>Robyn McComb | Designer</title>
  </head> 
  <body>
    <header>
      <h1>Robyn McComb</h1>
      <h2>Designer</h2>
    </header>
    <section>
      <p>Gallery Coming Soon.</p>
    </section>
    <footer>
      <p>&copy; 2015 Robyn McComb.</p>
    </footer>
  </body>
</html>

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,860 Points

Hey Robyn,

You just have a typo... you are missing an 'e' in "meta".

Fix that and you're good to go. :)

Robyn McComb
Robyn McComb
553 Points

Thank you! It worked now!

Robyn McComb
Robyn McComb
553 Points

Thank you! It worked now!