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 Create Navigation with Lists

Bummer the Portfolio list item should link to "index.htm"

Bummer the Portfolio list item should link to "index.htm"

I typed: <nav> <ul> <li><a ref="index.html">Portfolio</a></li> <li><a ref="about.html">About</a></li> <li><a ref="contact.html">Contact</a></li> </ul> <nav>

Simple fix, html files come in two types of formats ".html" and ".htm".

For example you copy your index.html and rename it to index.htm it will still be the same document and open and operate the same way.

You also mistyped - href.

Teamtreehouse follows this on their objectives, but you can use it how ever you want.

Your answer:

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

2 Answers

ref changed to href thanks

Kelly von Borstel
Kelly von Borstel
28,880 Points

It looks like you mistyped href -- you typed ref instead of href.