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 Adding Pages to a Website Add a New Page

While creating the About.html page for my website. It does not show up on the webpage.

While creating the about.html page file in workspace, it will not show up on the actual website.

Instead it states: "The request URL/about.html was not found on this server."

here is the link: http://port-80-lqzn36teyl.treehouse-app.com/about.hmtl

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Reed Lambier | Snowboarder</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Reed Lambier</h1> <h2>Snowboarder</h2> </a> <nav> <ul> <li><a href="index.html">portfolio</a></li> <li><a href="about.hmtl" class="selected">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> </header> <div id="wrapper"> <section> <imgs src="img/me.jpg" alt="photo of Reed Lambier" class="profile-photo"></imgs> <h3>About</h3> <p>Hi, I'm Reed Lambier! This is my design portfolio where I share all of my favorite work. When I am not designing things, I enjoy excercising, hiking, biking, hunting and anything outdoors, and more.</p> <p>If you would like you should follow me on Twitter, my username is <a href="https://twitter.com/reedlambier">@reedlambier</a>.</p> </section> <footer> <a href="https://twitter.com/reedlambier"><img src="imgs/twitter-wrap.png" alt="Twitter Logo" class="social-icon"></a> <a href="https://www.facebook.com/reed.lambier"><img src="imgs/facebook-wrap.png" alt="Facebook Logo" class="social-icon"></a> <p>© 2015 Reed Lambier.</p> </footer> </div> </body> </html>

1 Answer

Hi Reed, you've got the about page in the link spelled "about.hmtl". Try correcting it to "about.html".

dude........you are a Life saver! THANK YOU.