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 trialAmanda Shaheen
1,241 PointsNot sure why it says I didn't close everything?
The program says something isn't closed... but I can't see anything that isn't
<!doctype html>
<html>
<heading>
</heading>
<body>
</body>
</html>
4 Answers
jb30
44,806 PointsThe name of the tag should be head
rather than heading
.
Abigail Schultz
Web Development Techdegree Student 3,796 PointsYep! This sounds right. If you do head instead of heading, it should help. If youβre trying to apply a heading, please be sure it is put into the body.
Rich Donnellan
Treehouse Moderator 27,696 PointsMarked as best.
Manuel Altamirano
4,091 Pointsin addition to what jb30 stated remember that the <head>
will contain all of the meta data such as charset, font, and CSS stylesheet references for the page. When you applying a heading you will need to use any of the <h1>
to<h6>
depending on your specific page needs with the <h1 >
being the largest heading and <h6>
being the smallest.
Abdullokh Dadakhujaev
1,802 PointsWrap the heading element into body ,
Greggar Deterville
12,263 Pointschange the tag <heading> </heading> to <head> </head> heading goes into the body.
Nima Sakha
Front End Web Development Techdegree Student 10,645 PointsNima Sakha
Front End Web Development Techdegree Student 10,645 PointsHi there you need to make sure you use the right tags in the right spot <html> <head> </head> <body> </body> </html>