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

Don't forget a header tag?

i have a header tag, i don't know what l am missing?

3 Answers

Hi Bryant,

Here's a little help to get you going.

Jeff

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

Could you post the code that's giving you problems? Without anything to look at I can say that I have goofed on occasion by mixing up head and header. I think it's an easy mistake to make.

Jennifer Hughes
Jennifer Hughes
2,083 Points

In a challenge quiz, it asks that I "add the head and body elements" to the page, so I did this:

<!DOCTYPE html> <html></html> <head></head> <body></body>

The quiz says that is wrong, and "don't forget the head tag"

What am I missing?

Thanks.

i also have the same problem, i already put the header but it still says "Don't forget the header"

what should i do ? thanks