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

Can't move past Coding Challenge. Help!

I am having trouble getting the correct answer to this coding challenge. I feel like my answer is correct, but I'm getting a BUMMER error every time. I can't figure out the issue.

I have inputted this: <li><a href="pies.html" Pies</a></li>

The Bummer says I need to set the href to "pies.html". Which I've done.

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! Unfortunately, you havenΒ΄t posted all of your code, but in the code you've posted, I can see a small error.

You wrote:

<li><a href="pies.html" Pies</a></li>

But you forgot to close off the beginning anchor tag with a >.

That should be:

<!-- Note the extra ">" immediately before "Pies" -->
<li><a href="pies.html">Pies</a></li>

Hope this helps! :sparkles:

That was the problem! Thanks a bunch!! Apparently, when it checked the work, it said the rest of my challenge was correct when I had the same error in the rest of the code as well.