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
Gage Tillery
842 Pointsthe links for my website aren't really working?
i can click the links and they work individually, but once i click the link (such as clicking the "About" tab/link) i cant go back to the portfolio tab. it tells me the url was not found. any suggestions of what could be wrong?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Gage Tillery | Designer</title>
<link rel="stylesheet" href="css/normalize[1].css">
<link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<a href = "index.html" id="logo">
<h1>Gage Tillery</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>
</section>
<footer>
<a href="http://twitter.com/The_TechGage"><img src="img/twitter[2].png" alt="Twitter logo" class="social-icon"></a>
<a href="https://www.facebook.com/gage.tillery.750"><img src="img/facebook[1].png" alt="Facebook logo" class="social-icon"></a>
<p>© 2015 Gage Tillery.</p>
</footer>
</div>
</body>
</html>
```HTML

Dennis Balagna
4,948 Pointsneed the code for about.html :)
3 Answers

Dennis Balagna
4,948 PointsThe only thing I see weird is your href format, but that would only throw certain browsers off I think It was a bug if Firefox a long time ago.
<a href = "index.html">Portfolio</a>
versus no extra whitespace
<a href="index.html">Portfolio</a>
Other than that, did you accidentally rename your index.html to something else?

Abe Layee
8,378 PointsPost your code please.
Gage Tillery
842 Pointsim actually not sure how to post my code.

Dennis Balagna
4,948 PointsMake sure the anchor tags in your about.html and contact.html files are pointed toward index.html and not something different like portfolio.html.
<a href="index.html">Portfolio</a>
This is just a guess without actually seeing your code. Typos usually account for most problems.
Gage Tillery
842 Pointsim not exactly sure how to post my code from my work space or i would be happy to show it. could you tell me how?
Gage Tillery
842 Pointsokay my post was updated. if you need the about.html code let me know because the issue may be in there.
Gage Tillery
842 Pointsokay done!
Dennis Balagna
4,948 PointsDennis Balagna
4,948 PointsTo post your code, first copy it from your workspace. Then here in your forum post, where you want to place your code, type 3 backticks (key above the tab) immediately followed by "html" (but without the quotes). Hit enter to start a new line and paste your code. Put a new line after your pasted code, and then type 3 more backticks.