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

Iulia Kraiter
858 PointsAbout page does not appear.
Hello guys,
On the site I am making, my about page does not appear when I create a new about file and copy and paste the content from the index.html file to the about.html file. Even when I clicked the about and contact pages though, before I created the about file, the page that came up showed a message that says "Not Found
The requested URL /Contact.html was not found on this server."
My code is here. Please let me know if you see any error. The only problem I have on the home page is the footer pictures not showing up, however the links to Nick's twitter and facebook pages do work.
Thank you,
Iulia
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Nick Pettit | Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href='https://fonts.googleapis.com/css?family=Slabo+27px' rel='stylesheet' type='text/css'> <link href='https://fonts.googleapis.com/css?family=Judson' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1> Nick Pettit </h1> <h2> Designer </h2> </a> <nav> <ul> <h3> <li><a href="index.html" class="selected">Portfolio</a></li> <li><a href="About.html">About</a></li> <li><a href="Contact.html">Contact</a></li> </h3> </ul> </nav> </header> <div id="wrapper"> <section> <ul id="gallery"> <li> <a href="img/numbers-01.jpg"> <img src="img/numbers-01.jpg" alt=""> <h4><p>Experimentation with color and texture.</p></h4> </a> </li> <li> <a href="img/numbers-02.jpg"> <img src="img/numbers-02.jpg" alt=""> <h4><p>Playing with blending modes in photoshop.</p></h4> </a> </li> <li> <a href="img/numbers-06.jpg"> <img src="img/numbers-06.jpg" alt=""> <h4><p>Trying to create an 80's style of glows.</p></h4> </a> </li> <li> <a href="img/numbers-09.jpg"> <img src="img/numbers-09.jpg" alt=""> <h4><p>Drips created using Photoshop brushes.</p></h4> </a> </li> <li> <a href="img/numbers-12.jpg"> <img src="img/numbers-12.jpg" alt=""> <h4><p>Creating shapes using repetition.</p></h4> </a> </li> </ul> </section> <footer> <a href="http://twitter.com/nickrp"><img src="twitter-wrap.png" alt="Twitter Logo" class="social-icon"></a> <a href="http://facebook.com/nickpettit"><img src="facebook-wrap.png" alt="Facebook Logo" class:"social-icon"></a> <p>Ā© 2014 Nick Pettit </p> </footer> </div> </body> </html>
2 Answers

Callum King
Front End Web Development Techdegree Student 4,934 PointsRegarding the nav link, the href attributes are case sensitive, do your file names contain capital letters too? In the Facebook wrap the class declaration is incorrect, you put a colon instead of equals.

Iulia Kraiter
858 PointsOH my God you saved me and my work,, thank you, thank you thank you!!

Callum King
Front End Web Development Techdegree Student 4,934 PointsNo problem :)