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 How to Make a Website HTML First Create the Content Containers

Every time I update my html code and I try to preview my work I see only my name but nothing else.

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> Said Aden Student</title> </head> <body> <header> <h1> Said Aden</h1> <h2>student</h2> </header> <section> <p>Gallery would go here.</p> </section> <footer> <p>Ā© 2015 Said Aden. </p> </footer> </body> </html>

5 Answers

Luciano Bruzzoni
Luciano Bruzzoni
15,518 Points

Hey, you are missing the opening body section right under the head section. You have the closing body tag, but you never opened it. Hopefully that helps.

Kirstine Nichols
Kirstine Nichols
13,592 Points

It looks like you are missing an opening body tag. It should be immediately after the closing head tag.

yes, thanks everyone. it works fine now.

<body>

so you mean <body>

</body>