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

Following the video...however...

I have followed this video to a T however, when viewing my website "live", only my first name shows in the title... I have checked this against my coding and cannot find any errors in text or spacing... does anyone have any ideas as to why this might be happening?

should be comment: Can you post the content of the files you're referring to?

3 Answers

Ana Paula Daros
Ana Paula Daros
8,436 Points

Hello Jacqueline,

Did you write the HTML root element as well as the head and body elements?

<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>

Can you post the content of the files you're referring to?

<!DOCTYPE html> <html> <head> <meta charset= "utf-8"> <title>Jackie Henry | Designer</title> <head> <body> <header> <h1>Jackie Henry</h1> <h2>Designer</h2> </header> <section> <p>Gallery will go here.</p> </section> <footer> <p>Ā© 2014 Jackie Henry.</p> </footer> </body> </html>

web page as it reads:

Jackie

Designer

Gallery will go here.

Ā© 2014 Jackie Henry.