Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

John Gonzalez
2,606 Pointshref issue
seems my href is correct but i keep getting a "Bummer" notice
<!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

KRIS NIKOLAISEN
54,668 PointsYou 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."

Roberto Marungo
746 PointsWhen 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 ^.^

John Gonzalez
2,606 PointsThank you Roberto!
John Gonzalez
2,606 PointsJohn Gonzalez
2,606 PointsThanks Kris! It worked!