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 Write a comment in HTML

Xavier Mcloud
Xavier Mcloud
1,664 Points

what do I do?

I need help!!

index.html
<!DOCTYPE html>
<html>
</html>

3 Answers

Clayton Perszyk
MOD
Clayton Perszyk
Treehouse Moderator 48,723 Points

Add a comment to the top of the file and add the content that the question is requesting.

Marcos Treviño Rodriguez
Marcos Treviño Rodriguez
5,711 Points

What is the issue? You need to add the head , and body tags insisde the html to start running some code :)

dariuszkostrzewski
dariuszkostrzewski
9,409 Points

Something like that:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    Hello World!
</body>
</html>