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 Responsive Web Design and Testing Responsive Web Design

Link no work about and Contact

Inside my plantaform work, launch workspace, my about.html and contact.html code, is not connected with my index.html,,,

I have the answer: NOT FOUND.

The requested URL / about.html = was not found on this serves.

9 Answers

Josh Kilen
Josh Kilen
13,089 Points

If your <nav> looks like this:

<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>

you should be good, as long as your file names match the names in the <nav>. Always check typos first, I know from experience, if you know what I mean.

thanks I'll check

My index.html page is ok, but contact.html and about.html lost the hyper link.

I am enclosing a copy of my password, for verification.

Thank you so much

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Nick Pettit | Designer</title> <link rel="stylesheet" href="css/normalise.css"> <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic|Ubuntu:400,700,700italic' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Nikc Pettit</h1> <h2>Designer</h2> </a> <nav> <ul> <li><a href="index.html">Portfolio</a></li> <li><a href="about.html" class="selected">About</a></li>
<li><a href="contact.html">Contact</a></li> </ul> </nav> </header> <div id="wrapper"> <section> <img src="img/nick.jpg" alt="Photograph of Nick Pettit" class="profile-photo"/> <h3>About</h3> <p>1</p> <p>2</p> </section> <footer> <a href="http:// src=facebook.com/nickrpettit"><img src="img/facebook-wrap.png" alt="facebook Logo" class="social-icon"></a> <p>© 2014 Nick Pettit</p> </footer> </div> </body> </html>

Ary,

Josh Kilen
Josh Kilen
13,089 Points

What do you mean "contact.html and about.html lost the hyper link?"

my html.index has two pages, contact, about I can not connect three pages my code this equal to Nick but not working

i send copy code for you

tks..

Josh Kilen
Josh Kilen
13,089 Points

make sure your file names are correct and in the same folder. The code you sent works for me.

tsk

Thank you