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 trialGabriella 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,021 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.