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
Puyan Hormatipour
420 PointsNot 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
Raffael Dettling
32,999 PointsIt looks like youre missing the closing </a> tag
Patrik Horváth
11,110 PointsYou have to add CLOSING TAG </a>, Link to another PAGE :
<!-- anchor linking to external file --> <a href="https://www.mozilla.com/"> External Link </a>
Puyan Hormatipour
420 PointsNewbie mistake :), thanks
Patrik Horváth
11,110 Pointsits bit confusing for begginer cause HTML have some Self closing TAGS and some are not :) feel free to ask next time :)
Alejandro Narvaja
Courses Plus Student 7,340 PointsIf you have resolved this, please mark this thread as solved.