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

Matthew Zepeda
Matthew Zepeda
691 Points

I'm adding header to my html document and its saying 'don't forget to add the header tag" which i did, help

please help. I'm obviously doing something wrong and not adding the header tag in the correct spot.

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="uft-8">
    <title Matthew Zepeda | Designer.>
  </head>
  <body>
    <header>
      <h1> Matthew Zepeda </h1>
      <h2> Designer </h2>
    </header>
      <section>
        <p> The Gallery will go here. </p>
      </section>
      <footer>
        <P> &copy; Matthew Zepeda 2015</P>
      </footer>



  </body>

</html>

2 Answers

I can't see anything wrong with your header tag. But this is wrong.

<title Matthew Zepeda | Designer.>

Should be...

<title>Matthew Zepeda | Designer.</title>

Hi Matthew,

The code that your wrote for task 6 is correct but it's this title tag problem that is throwing off the checker for task 6.

I just copied and pasted your code into the challenge window and it passed it?

They don't just check for the header they check if your code is correct. :)