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

Having trouble viewing my list

I'm sure it's something obvious, but I can't see my list when I view the page. Everything else on the page looks exactly as it appears in the video.

<nav>
   <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>
</nav>

I stripped out the href element, but it didn't seem to make a difference.

<nav>
   <ul>
     <li>Portfolio</li>
     <li>About</li>
     <li>Contact</li>
   </ul>
</nav>

I have saved. I have refreshed. I'm sure I'm missing something obvious, but I can't see it.

1 Answer

That should work, I would look over the rest of the code and see if anything else is missing that's not part of your <ul> group.