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 Create the Content Containers

Why is my title showing up on the page instead of on the tab like in the lesson? I am using Google Chrome on a PC

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <tittle>Nelson Cole | Designer</tittle> </head> <body> <header> <h1>Nelson Cole</h1> <h2>Designer</h2> </header> <section> <p>Gallery will go here.</p> </section> <footer> <P>© 2015 Nelson Cole.</P> </footer>

</body> </html>

Your tag says "tittle." It should be "title."

4 Answers

Is something like this at the top of your html? If so, can you post your code?

<head>
<title>HTML Reference</title>
</head>

You have an extra 't' in 'title' :D

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <tittle>Nelson Cole | Designer</tittle> </head> <body> <header> <h1>Nelson Cole</h1> <h2>Designer</h2> </header> <section> <p>Gallery will go here.</p> </section> <footer> <P>© 2015 Nelson Cole.</P> </footer>

</body> </html>

You needed to use a <head></head> just like I have shown below, but then by now you must have solved this hey :)

<head>
       <meta charset="utf-8">
      <title>Nelson Cole | Designer</title>
</head>

<header>
   <h1>Nelson Cole</h1>
    <h2>Designer</h2>
</header>