Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Phil Hemmings
3,343 PointsAdding the header and body tags
Do you know why this is incorrect? It is telling me "don't forget the header."
<!DOCTYPE html> <html> <head></head> <body></body </html>
4 Answers

Aaron Graham
18,033 PointsThe header is a separate tag. Judging by the title of your post, I get the feeling your code should look something like this:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<header>
</header>
</body>
</html>

J Scott Erickson
11,883 PointsI assume you need: <html> <head></head> </html>
<!DOCTYPE html> is just the doctype declaration

J Scott Erickson
11,883 Points<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
```

Phil Hemmings
3,343 PointsGot it! Thanks guys!
J Scott Erickson
11,883 PointsJ Scott Erickson
11,883 PointsThis is probably more correct than mine.