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

What is wrong with the code, i did everything just like in the video.

Can someone tell me please?

index.html
<!DOCTYPE html>
    <html> 
      <head>
        <meta charset="utf-g">

        <tittle>Mihai | Designer</tittle>

      </head>
        <body>
          <header>
                    <h1>Mihai Pettit</h1>


          </header>
          <section>
          <p>Galery Will go here</p>
          </section>
          <footer>
            <p>&copy; 2014 Mihai Ijac.</p>
          </footer>

        </body>
    </html>

3 Answers

Feisty Mullah
Feisty Mullah
25,849 Points

You have got spelling mistake "title" with "tittle". hope this will help.

took me a while to figure out, rokie mistake i guess.

thank you for your feedback!!!

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>
    </title>
  </head>
  <body>
  <header>
    </header>

    <section>
    </section>

  <footer>
    </footer>

  </body>

</html>

Thanks you :D

Thank you :D