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

I seemed to be stumped I can not figure out if the tittle tag goes before or after the meta tag?

I am adding a tittle tag, I placed it after the opening of the head tag but after the meta tag. It says it is incorrect. So then I put the tittle tag after the open head tag but before the meta tag, and it says that is incorrect too. But I can not put it out side of the head tag, where does it go?

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"
    <tittle>Emily |Super Cool</tittle> 
  </head>
  <body></body>
</html>

1 Answer

Ken Alger
STAFF
Ken Alger
Treehouse Teacher

Emily;

You are spelling it tittle. The correct spelling is title.

Ken

Ken Alger
Ken Alger
Treehouse Teacher

Oh, and you haven't closed your meta tag either...