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

Elizabeth Hammock
Elizabeth Hammock
6,674 Points

About Page Is not linking

I created an about.html file but it is not linking on the website. I can manually type it in the browser and it will show up but when I click about navigation it goes no where.

3 Answers

Eric Vandenberg
Eric Vandenberg
9,095 Points
<nav>   
       <ul>
          <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>
        </ul>
</nav>

Do you have the links set within your navigation? Post you code if your are still having troubles

Eric Vandenberg
Eric Vandenberg
9,095 Points

@Wayne Priestley This is an issue with setting up a project. I struggled with learning how to navigate a text editor when I was starting out and it's looks like - by the ever-present linking html file link questions - that a lot of others do too. It's not like I'm posting a whole function for someone to pass a code challenge. A person does not magically think up to include a path to their images or files. This type of problem requires a little more guidance from Treehouse or the Treehouse Forum.

John Steer-Fowler
PLUS
John Steer-Fowler
Courses Plus Student 11,734 Points

Hi Elizabeth Hammock

Please post your code so we can take a look. Refer to the Markdown Cheatsheet below for help on posting code.

Wayne Priestley
Wayne Priestley
19,579 Points

My apologies Eric, I see what you mean.