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 trialKristin McGowan
1,100 PointsThis is my code for Web Design challenge 4 of 4, an unordered list with "About" being first. Treehouse says this is wrong but I have no idea why.
<p>This is code!</p>
<ul class="nav">
<li>=<a href="#">About</a></li>
<li>=<a href="#">Cupcakes</a></li>
<li class="last">=<a href="#">Locations</a></li>
</ul>
3 Answers
Jeremy Frimond
14,470 PointsYou do not need the equal signs in between your <li> and <a> tags. You only use equal signs inside of the carrots <> to assign some sort of modifying value such as a class, id or many other stuff that you will eventually get too.
Hope this helps, best of luck!
James Conner
9,821 Pointsthose "equals" signs might be throwing some errors your way. (between your <li> tag and <a> tag)
Kristin McGowan
1,100 PointsThank you!
Kristin McGowan
1,100 PointsThank you!