Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Kristi Mingal
817 PointsAbout and Contact pages aren't linking
From the Portfolio page when the About and Contact links are clicked the respective pages don't link to navigate to those pages. https://w.trhou.se/g4lmry4m9h
2 Answers

Unsubscribed User
Courses Plus Student 7,294 PointsHi Kristin, The links for about.html and contact.html are incomplete. You have ahref, where it should be ahref=
Take a look at the first link, index.html, and that will show you what you are missing.

Kristi Mingal
817 PointsSJ I changed them and added the = only to the lines that have class="selected" in them and it didn't work. https://w.trhou.se/hf813n8wy5

Unsubscribed User
Courses Plus Student 7,294 PointsDoes your code look like this?
<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>

Kristi Mingal
817 PointsThank you SJ it works now!

Unsubscribed User
Courses Plus Student 7,294 PointsSweet!
Schweine FEin
2,671 PointsSchweine FEin
2,671 PointsWell without some code it's hard to help you.