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

Darren Fisman
Darren Fisman
229 Points

Inside the three new list items, add the following images: "numbers-01.jpg","numbers-02.jpg", and "numbers-06.jpg". Leav

How to make a Website

  <ul>
    <li>
      <a href="img/numbers-01.jpg">
        <img src="img/numbers-01.jpg" alt="">
        <p> Experiment with color and texture</p>
       </a>
    </li>
    <li>
      <a href="img/numbers-02.jpg">
        <img src="img/numbers-02.jpg" alt="">
        <p> Experiment with color and texture</p>
       </a>
    </li>
    <li>
      <a href="img/numbers-06.jpg">
        <img src="img/numbers-06.jpg" alt="">
        <p> Experiment with color and texture</p>
       </a>
    </li>
  </ul>
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">
            <img src="img/numbers-01.jpg" alt="">
            <p>"numbers-01.jpg"</p>
           </a>
        </li>
        <li>
          <a href="img/numbers-02.jpg">
            <img src="img/numbers-02.jpg" alt="">
            <p>"numbers-02.jpg"</p>
          </a>
        </li>
        <li>
          <a href="img/numbers-06.jpg">
            <img src="img/numbers-06.jpg" alt="">
            <p>"numbers-06.jpg"</p>
           </a>
        </li>
      </ul>
    </section>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

2 Answers

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Darren.

The challenges are very strict and very picky. For task 2, the challenge specifically states: "Leave the alt attributes blank, and don’t add any captions or links." and you've added both captions (with the <p> tags) and links. Delete both those for all the added images and you'll be good to go.

Keep Coding! :)

:dizzy:

Darren Fisman
Darren Fisman
229 Points

Thank you for your quick and helpful comment ! I did as suggested and removed both those features for all images and my code looks something like <section> <ul> <li> <a href="img/numbers-01.jpg"> </a> </li> <li> <a href="img/numbers-02.jpg"> </a> </li> <li> <a href="img/numbers-06.jpg"> </a> </li> </ul> </section> Unfortunately, I am being told "Bummer ! Make sure you include an image tag that displays "numbers-01.jpg". What do they mean?

Jason Anders
Jason Anders
Treehouse Moderator 145,858 Points

You went a bit backwards.

You removed the image tags, but kept the links <a href></a>. Inside the <li> tags, there should only be one line... the image <img> tag with the image path.

Below is the corrected code (for one of the images... you'll need to do the other two :smiley:). Have a look and see if it makes sense.

<li>
  <img src="img/numbers-01.jpg" alt="">
</li>

:dizzy:

Darren Fisman
Darren Fisman
229 Points

Thank you very much ! I am also going to rewatch the videos to properly understand !