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 How to Make a Website Creating HTML Content Organize with Unordered Lists

Andrew Hare
Andrew Hare
179 Points

I correctly put the img/numbers-01.jpg and so forth correctly, yet it tells me I did it wrong... What did I do wrong?

I don't know what I if wrong

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Nick Pettit</title>
  </head>
  <body>
    <header>
      <a href="index.html">
        <h1>Nick Pettit</h1>
        <h2>Designer</h2>
      </a>
      <nav>
        <ul>
          <li><a href="index.html">Portfolio</a></li>
          <li><a href="about.html">About</a></li>
          <li><a href="contact.html">Contact</a></li>
        </ul>
      </nav>
    </header>
    <section>
      <ul>
        <li><a href="img/numbers-01.jpg">Ehh, Could be a Better Photo but Whatever</a></li>
        <li><a href="img/numbers-02.jpg">Weird Photo, but Still Cool</a></li>
        <li><a href="img/numbers-06.jpg">Cool Photo</a></li>
      </ul>
    </section>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

4 Answers

Rob Brink
Rob Brink
7,148 Points

you need to use the img tag instead of a link like this.

<section> <ul> <li><img src="img/numbers-01.jpg" alt=""></li> <li><img src="img/numbers-02.jpg" alt=""></li> <li><img src="img/numbers-06.jpg" alt=""></li> </ul> </section>

At the moment you have put links to the file paths of those images - that's what the 'a' tag is doing, but you'll only see the text that you wrote describing each image at the moment.

I think they're asking you to put the actual images onto the page with an 'img' tag, which takes a 'src' reference in the same way that you've written the 'a' with 'href' already.

Does that make sense to you?

Rob Brink
Rob Brink
7,148 Points

it states add 3 blank list items into your unordered list. try removing the links from the list like this and it should work.

<section> <ul> <li></li> <li></li> <li></li> </ul> </section>

Andrew Hare
Andrew Hare
179 Points

I did, but it then asked me to add the img/numbers-01.jpg in it, which I did

Andrew Hare
Andrew Hare
179 Points

Yes, and thank you very much for the help