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 Creating HTML Content Use the Navigation Element

About Links

my lists does not change into hyper links on the browser , I code exactly what Nick has coded in the video.

Jennifer Nordell
seal-mask
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Well first, let's make sure the basics are in order. Make sure you're saving your files and then refreshing the preview in the browser. If that still fails, we're going to need to see your code. The easiest way to do this is to link us a snapshot.

https://w.trhou.se/xy8dap9czm here is my snapshot of my codes

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! This is an easy fix. You have a misspelling. Here's your code:

<ul>
           <li><a herf="index.html">Portfolio</a></li>
           <li><a herf="about.html">About</a></li>
           <li><a herf="contact.html">Contact</a></li>
         </ul>

That should be href not herf. Here's how it should look:

<ul>
           <li><a href="index.html">Portfolio</a></li>
           <li><a href="about.html">About</a></li>
           <li><a href="contact.html">Contact</a></li>
         </ul>

Happy coding! :sparkles:

Thanks for help !!!