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

marsha spell
PLUS
marsha spell
Courses Plus Student 5,555 Points

images wont show up

changed category to html

2 Answers

Gary Sherman
seal-mask
.a{fill-rule:evenodd;}techdegree
Gary Sherman
Front End Web Development Techdegree Student 7,886 Points

You have several missing quotation marks and missing link closing tags. You need a closing quote after the image file path/name. There's a link for a numbers-06.jpg but that image does not exist in your work space. Make sure you tab your code so it is easier to read and find errors as well. Hope this helps.

Here's the fixed section below:

  <ul>
    <li>
      <a href="img/numbers-01.jpg">
      <img src="img/numbers-01.jpg" alt="">
      <p>Fun day at the Zoo.</p>
      </a>
    </li>
    <li>
      <a href="img/numbers-02.jpg">
      <img src="img/numbers-02.jpg" alt="">
      <p>Key West Florida.</p>
      </a>
    </li>
    <li>
      <a href="img/numbers-06.jpg">
      <img src="img/numbers-06.jpg" alt="">
      <p>Colorado Springs.</p>
      </a>
    </li>
    <li>
      <a href="img/numbers-09.jpg">
      <img src="img/numbers-09.jpg" alt="">
      <p>Night before Christmas.</p>
      </a>
    </li>
    <li>
      <a href="img/numbers-12.jpg">
      <img src="img/numbers-12.jpg" alt="">
      <p>Winter day.</p>
      </a>
    </li>
 </ul>
marsha spell
PLUS
marsha spell
Courses Plus Student 5,555 Points

do i need to put my pictures in one file and name each one of them ?to get it to show up