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 trialShima Bahre Abdalla
1,729 Pointsi created the lings but i do not knw where is problem can you help please?
<!DOCTYPE html>
<html>
<head>
<title>Lists and Links</title>
</head>
<body>
<h1>welcome to soan's web</h1>
<p>this web will be focusing on what is soana and what is it use for</p>
<ul>
<li>Cakes</li>
<a href="cakes.html">read more</a>
<li>Pies</li>
<a href="pies.htmal">#</a>
<li>Candy</li>
<a href="candy.html">read more</a>
</ul>
</body>
</html>
4 Answers
Guillermo Gallo
Full Stack JavaScript Techdegree Student 8,518 PointsYou seem to be off to a great start, however it seems like you created your own links and also created them outside of the list items.
The challenge requires the <a> tags to be placed around the text inside each <li>.
So for example something like this:
<ul>
<li><a href=“cakes.html”>Cakes</a></li>
…
…
…
</ul>
Hopes this helps.
Greggar Deterville
12,263 PointsGuillermo is correct plus you have this <a href="pies.htmal">#</a>
typo error.
Ma Rosario Pajaroja-Villanueva
1,519 PointsHello there,
<a href="pies.htmal">#</a>
Typo-error - for htmal
instead of html
Alan Lane
9,156 PointsAlso to add to what Guillermo posted you have a typo under the pies link
<a href="pies.htmal">#</a>
should be:
<li><a href=“pies.html”>Pies</a></li>