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 trialKevin Lowe
324 PointsMy Webpage is not displaying the same
I have followed this video from the beginning. When i preview my code my webpage doesn't display correctly. Here is my code. What have i done wrong.
<!DOCTYPE html>
<html>
<head>
<meta charsets="utf-8">
<title>I've been there | Me too</title>-->
</head>
<body>
<header>
<h1>so have i</h1>
<h2>and meeeeee toooo</h2>
</header>
<section>
<p>Gallery will go here.</p>
</section>
<footer>
<p>© RealPlaces.com</p>
</footer>
</body>
</html>
8 Answers
lovell
7,882 PointsKevin, working from top:
-meta charsets should be -meta charset -closing title tag- shouldn't have a comment tag at the end of it -->
Hope that helps. Good luck. :-)
notf0und
11,940 PointsAs Warren said, you have a few mistakes in your code, so try to fix those and see if your page has any changes.
Without a screenshot or a description of how your page looks different, I'd have to guess that maybe you're using a different browser, and that's why the page is looking different. Could you go into more detail about how your page is not displaying the same?
Kevin Lowe
324 PointsHi Guys,
I have watched the Tutorial again and here is my code now,
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>I've been there | Me too</title> </head> <body> <header> <h1>so have i</h1> <h2>and meeeeee toooo</h2> </header> <section> <p>Gallery will go here.</p> </section> <footer> <p>© RealPlaces.com</p> </footer> </body> </html>
This is the page I get,
notf0und
11,940 PointsDo you land on a page with "Index of ../", Kevin, and if so, is that the difference you're talking about?
Jon Benson
12,168 Pointsopen an html element after your doctype, and inside that add your head, body, etc.
Kevin Lowe
324 Points<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>I've been there | Me too</title> </head> <body> <header> <h1>so have i</h1> <h2>and meeeeee toooo</h2> </header> <section> <p>Gallery will go here.</p> </section> <footer> <p>© RealPlaces.com</p> </footer> </body> </html>
Kevin Lowe
324 Pointshave I not opened an html element by <html></html>?
Kevin Lowe
324 Pointsit says index of testing.html which is the name of my file
notf0und
11,940 PointsThat seems to be a bug with Workspace Previews right now. Don't worry about it, just click through to your HTML file and the proper page will load. So is that the issue you were talking about then?
Kevin Lowe
324 Pointsyes it is.....so i'm not doing it wrong after all :) Thanks Bryan and everyone else for your comments and help. I can carry on learning now :)