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 HTML Basics Getting Started with HTML Lists and Links Challenge

href issue

seems my href is correct but i keep getting a "Bummer" notice

index.html
<!DOCTYPE html>
<html>
  <head>
    <title>Lists and Links</title>
  </head>
  <body>
 <ul>
   <li> <a href=”http://www.cakes.html”>Cakes</a> </li>
   <li> <a href=”http://www.pies.html”>Pies</a> </li>
  <li> <a href=”http://www.candy.html”>Candy</a> </li>
 </ul> 
  </body>
</html>

2 Answers

You don't need "http://www." so delete that. From there it was a little confusing since after that change it still failed. But I changed the double quotes for href to single quotes and it passed

Edit Now I know why. You are using fancy quotes. If you use straight double quotes, those will pass as well after removing "http://www."

Thanks Kris! It worked!

Roberto Marungo
Roberto Marungo
746 Points

When linking to a files or images in the same directory hence other pages in the same folder or sub folder you don't need to provide the absolute URL to the browser just the reference path like pies.html or img/pie.jpg.

If you are linking to another URL or Image that is not inside your main website directory you will need to provide the absolute path like so https://google.com or https://unsplash.com/photos/NodtnCsLdTE

Lastly when writing code you can use double "quotes" or single 'quotes' any other format or quotes or back ticks wont work. Hope this helps further.. HAPPY CODING ^.^

Thank you Roberto!