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 trialAry de Oliveira
28,298 PointsLink 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
13,089 PointsIf 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.
Ary de Oliveira
28,298 Pointsthanks I'll check
Ary de Oliveira
28,298 PointsMy 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
13,089 PointsWhat do you mean "contact.html and about.html lost the hyper link?"
Ary de Oliveira
28,298 Pointsmy 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
13,089 Pointsmake sure your file names are correct and in the same folder. The code you sent works for me.
Ary de Oliveira
28,298 Pointstsk
Ary de Oliveira
28,298 PointsThank you