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 trialAhmed AboSeif
Courses Plus Student 514 Pointsthe about page don't want to be opened Not Found The requested URL /About.html was not found on this server.
??!
7 Answers
RAFAEL COSTA
6,243 PointsAhmed, try to set the about in lowercase and without the /
Andreas Anastasiades
2,916 PointsMaybe you should post some code?
you probably need something like <a href="about.html">About</a> But if you don't have an about.html file made, you will continue to get this error...
Ahmed AboSeif
Courses Plus Student 514 Pointsi did it and i followed every step but it don't want to open .....
RAFAEL COSTA
6,243 PointsFind on your HTML code the following:
/About.html
then you substitute all this for about.html
You need to have a file about.html created. If you get any difficult on that post here. We'll always help!
Andreas Anastasiades
2,916 Pointsdidn't see how it converted, so here:
<a href="about.html">About</a>
This will only work if you have a file named about.html and it is in the same folder as your other html files such as index.html
Ahmed AboSeif
Courses Plus Student 514 Pointsthat's my code is right
<li><a href="About.html" class="selected">About</a></li>
Andreas Anastasiades
2,916 Pointsdo you have a file called about.html?
Ahmed AboSeif
Courses Plus Student 514 Pointsyess
RAFAEL COSTA
6,243 PointsOn the left side of your workspace you can see the file index.html. You must see a file named about.html. If you do not see it, right click there and create a new file named: about.html
Ahmed AboSeif
Courses Plus Student 514 Pointsyes i do have it and i copy the codes from the index.html to about.html and then i deleted the images and change the class="selected" to the about.html
RAFAEL COSTA
6,243 Pointsthe about.html is right below the index.html or inside another folder?
Ahmed AboSeif
Courses Plus Student 514 Pointsit over the index.html
Ahmed AboSeif
Courses Plus Student 514 PointsAhmed AboSeif
Courses Plus Student 514 PointsCan you please say how say how to do this I'm a beginner
Faisal Rahimi
4,019 PointsFaisal Rahimi
4,019 PointsThanks Rafael, this solved my problem.