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

why title section will not post my title for the page on the tab section of the browser but within the page itself

i cant figure out why what i wrote in between title wont show up in the the browser tab above for the webpages. is shows up in the preview page with everything else. I triple checked to make sure everything was correct and the way it was written in the video but with my name and what i wanted stuff to say but thats it. can you help me?

Christopher van Ruitenbeek
Christopher van Ruitenbeek
13,705 Points

Could you add your code?

It might help us to provide you with an answer.

not 100% on what a code is so here's what i have on the "workspace" exactly as it looks

<!DOCTYPE html> <html> <head> <meta charset="utf-8" <title>Kevin | student</title> </head> <body> <header> <h1>Kevin</h1> <h2>student</h2> </header> <section> <p>stuff will go here.</p> </section> <footer> <p>Ā© 2014 kevin student</p> </footer> </body> </html>

ok not exactly when i submitted the comment it changed it up

hey thank for helping me try to figure that out i found out what was wrong it was a typo error that i overlook misses the > at the end of the charset cheers!

2 Answers

The head, body, and closing html tags are missing

<!DOCTYPE html>
<head>
  <meta charset="utf-8">
  <title>Kevin | student</title>
</head>
<body>
<header>
  <h1>Kevin</h1>
  <h2>student</h2>
</header>
<section>
  <p>stuff will go here.</p>
</section>
<footer>
  <p>&copy; 2014 kevin student</p>
</footer>
</body>
</html>

This is the standard HTML 5 layout

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>

</body>
</html>

Kevin, please mark this question as answered. Thanks ;p

at the end of charset