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

Remi Olu
Remi Olu
2,762 Points

Hmm I only see one part of my content. ???

Hey all,

Just started learning. So far so good. However when I'm trying to view my webpage after the 'Create the Content Containers', I only see the <h1> element of my site and nothing else. I am using Google Chrome as my main browser but I do not think that it would affect it. Please assist. Thank you!

Stone Preston
Stone Preston
42,016 Points

can you post the code you are using? you will have to format your html code with markdown in order for it to appear correctly. see this post on formatting code in the forum or watch the tips for asking questions video on the right side of the page

Remi Olu
Remi Olu
2,762 Points

certainly

<!DOCTYPE html>
<html>
  <head>
<meta charset="utf-8">
<title>Bradley A | Hobbyist</title>
  </head>
<body>
<header>
<h1>Bradley A</h1>
<h2>Hobbyist</h2>
</header>
<section>
<p>Gallery will go here.</p>
</section>
<footer>
<p>&copy; 2014 Bradley A.</p>
</footer>
</body>
</html>

2 Answers

Stone Preston
Stone Preston
42,016 Points

hmm. everything looks good to me. Be sure and save your file and try viewing it again. if that doesnt work, can you post a screen shot of what you are actually seeing?

Remi Olu
Remi Olu
2,762 Points

Ahh! I forgot to save it from my previous exercise! Now I see it. Thank you Mr. Preston