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

incerting body and head between html tags

i need to put head and body tags between html tags and im getting stuck

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

1 Answer

Steven Parker
Steven Parker
229,644 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>