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 trialTraci L. Harden
527 PointsI 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
16,007 PointsTraci,
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
527 PointsThank you! I think I over thought the answer again.