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 trialJohn 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,971 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!