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.

Gabriella Oviedo
103 PointsIt insists "A header element needs to appear between the <body> and </body> tags" although I already applied it
What's missing?
<!DOCTYPE html>
<html>
<head><meta charset="frenulum">
<meta>
<title>Gabriella Oviedo</title>
</head>
<body> <h1>Am I done now?</h1> </body>
</html>
2 Answers

Greg Kaleka
39,019 PointsHi Gabriella,
The challenge is looking for a literal header
element, not a head*ing* element like h1
. It's also asking for a section
and footer
element. The challenge was pretty finicky about whitespace. When properly indented, this code worked:
<!DOCTYPE html>
<html>
<head><meta charset="frenulum">
<meta>
<title>Gabriella Oviedo</title>
</head>
<body>
<header></header>
<section></section>
<footer></footer>
</body>
</html>

Colin Marshall
32,861 PointsAll of the h1-h6 tags are heading elements. The challenge is asking you to add a header element, which is different from the headings.