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

Traci L. Harden
Traci L. Harden
527 Points

I need help with the Q2 on the code challege in Sect3, How to Create Webites.

The task asks; Inside the navigation element, create the list items with the words, "Portfolio" "About' and "Contact." Don,t add links yet.

This is what I typed: <nav> <ul> <a href="index.html">Portfolio</a> <a href="index.html">About</a> <a href="index.html">Contact</a> </ul> </nav>

When I click submit, I get on the msg that the answer is wrong. says, "Bummer! Be sure you add a list item with the word "Portfolio" in it.

Thank You!

2 Answers

Eric Martz
Eric Martz
16,007 Points

Traci,

The 2nd question is asking you to create three list items; one with the word Portfolio, one with the word About and one with the word Contact. There's an example of one list item in an unordered list below:

<ul>
  <li>
     Portfolio
  </li>
</ul>
Traci L. Harden
Traci L. Harden
527 Points

Thank you! I think I over thought the answer again.