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

Not sure if it is a bug or a mistake

In the html basics code test I am typing the correct info but it still show bummer message. https://teamtreehouse.com/library/html-basics-2/getting-started-with-html/lists-and-links-challenge

This is the bummer message: Bummer! You need to set the 'href' attribute of the second <a> element to 'pies.html'.

And this is the code I entered for Pies list.

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

4 Answers

It looks like youre missing the closing </a> tag

You have to add CLOSING TAG </a>, Link to another PAGE :

<!-- anchor linking to external file --> <a href="https://www.mozilla.com/"> External Link </a>

Newbie mistake :), thanks

its bit confusing for begginer cause HTML have some Self closing TAGS and some are not :) feel free to ask next time :)

If you have resolved this, please mark this thread as solved.