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

Index.html Workspace

I was following along with the video and everything seems the same on my workspace, but not when viewed. I get a first page that has Index and my name under it. I click on it and brings up my name only not anything else and my name is still in blue. What did I do wrong? <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Marco Perez / Designer</title> </head> <body> <header> <h1>Marco Perez</h1> <h2>Designer</h2> </header> <section> <p>Gallery will go here.</p> </section> <footer> <p>Ā© 2014 Marco Perez.</p> </footer> </body> </html>

1 Answer

I can't tell if you intentionally left the html and body tags out of your code for the purpose of simplifying it for your question, or whether they're actually missing from the code you're trying to run.

If it's the latter, make sure your code is organized this way:

<!DOCTYPE html>
<html>
<head>
    <meta>
    <title></title>
</head>
<body>
    <header></header>
    <section></section>
    <footer></footer>
  </body>
</html>

No I don't know why they didn't copy over, but they are there. And it's complete no error but it's basically bring up the pages I work on before where you change the color. But I can't get it to view, So yea I got it all organized like the that one but I press view and it shows the index page. And my page is a subpage to the index page but only brings my name up in blue.