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 trialRon Johnson
1,695 PointsThe requested URL /index.html/ was not found on this server. This is what is displayed when I try to view my page.
My code is below, I accidentally x'd the index file. I created a new one but nothing has worked since. Any ideas?
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Ron Johnson |Designer</title> </head> <body>
<header> <a href="index.html"> <h1>Ron Johnson</h1> <h2>Designer</h2> </a> <nav> <ul> <li> <a href="index.html">Portfolio</a></li> <li> <a href="about.html">About</a></li> <li> <a href="contact.html">Contact</a></li> </ul> </nav> </header> <section> <ul> <li> <img src="img/numbers-01.jpg" alt=""> </li> </ul>
</section>
<footer><p>Ā© 2015 Ron Johnson.</p> </footer> </body> </html>
1 Answer
Steven Parker
231,198 PointsOne idea I had was to "reset" your workspace. Download what you currently have, in case there's work in it you want to keep, then delete the workspace.
Back in the course video, launch the workspace again to get a freshly built one. Then make your changes and/or upload parts you saved.
Ron Johnson
1,695 PointsRon Johnson
1,695 PointsThank you so much! I'm good. That worked.
channonhall
12,247 Pointschannonhall
12,247 PointsI once had this problem And this is the trick that fixed it
I was just about to say that...