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 Treehouse Club: HTML Publish a Story HTML Structure

head and body

im not getting how to put head and body tags between html tags

index.html
<!DOCTYPE html></html></html></head></body></html><tags></html><

2 Answers

Steven Parker
Steven Parker
229,732 Points

You only have end tags.

Tags for most elements must be used in pairs, one start tag and one end tag. Only the end tag has the slash (/) before the name.

Also, there's no tag named "tags".

Following the DOCTYPE, basic HTML structure would generally look like this:

<html>
    <head></head>
    <body></body>
</html>

like this:

<!DOCTYPE html>

<html lang="en"> <head> <meta charset="utf-8" /> <title></title> </head> <body>

</body>

</html>

Steven Parker
Steven Parker
229,732 Points

Or Halifa — when posting code, always use the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area. :arrow_heading_down:

Also, Treehouse discourages posting code answers without explanations.