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

i can't get my about.html to work

each time i try to add the about.html page to work it says about.html website can not be found

3 Answers

Hi, Please send your code. Your nav need to be:

<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>
Jonathon Bujosa
Jonathon Bujosa
2,267 Points

I had the same issue. For me the problem was i saved the file as About.html....but in my nav its under about.html...I had the uppercase A when it should have been lowercase. Make sure its spelled exactly the same with proper caps.

Gregory Robinson
Gregory Robinson
2,439 Points

Have you tried right clicking on the left of the workspace where the files are. Right click where you want the file, then select NEW FILE. This should create a new file that can be renamed to about.html

It let's me create the file and all but on my website it says it can't be found