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 trialHaley Franz
1,537 PointsWhy isn't this linking
Its asking me to link each html to an outside source, what is wrong here?
<!DOCTYPE html>
<html>
<head>
<title>Lists and Links</title>
</head>
<body>
<ul>
<li>Cakes</li>
<a href="cakes.html">cakes</a>
<li>Pies</li>
<a href="pies.html">pies</a>
<li>Candy</li>
<a href="candy.html">candy</a>
</ul>
</body>
</html>
3 Answers
stjarnan
Front End Web Development Techdegree Graduate 56,488 PointsHi Haley,
You could do it like this:
<li><a href="href">Linktext</a></li>
dzttnnlmgq
2,432 PointsHi Haley,
As stated by stjarnan, the a element with the href attribute should be nested within the li element, it should read as follows:
<li><a href="path"> Desired Text </a></li>
Likewise, once corrected, ensure that you have the right path files, remember they are relative to the file you are coding within.
Hope this helps, Leon.
Bogdan-Adrian Cornea
9,347 PointsHi Haley,
You just need to add this model of block code
<li><a href="url Path"> Text </a></li>