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

Shima Bahre Abdalla
Shima Bahre Abdalla
1,729 Points

i created the lings but i do not knw where is problem can you help please?

index.html
<!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
seal-mask
.a{fill-rule:evenodd;}techdegree
Guillermo Gallo
Full Stack JavaScript Techdegree Student 8,517 Points

Hi Shima Bahre Abdalla

You 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.

Guillermo is correct plus you have this <a href="pies.htmal">#</a> typo error.

Ma Rosario Pajaroja-Villanueva
Ma Rosario Pajaroja-Villanueva
1,519 Points

Hello there,

 <a href="pies.htmal">#</a>

Typo-error - for htmal instead of html

Also 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>