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

Workspace challenge

In the workspace challenge. on "How to make a website", How do I upload images for the image Tags <img src=" img/numbers-01.jpg" alt=""> <img src=" img/numbers-02.jpg" alt=""> <img src=" img/numbers-06.jpg" alt=""> When I do this and check my work its say Bummer! Make sure you include image Tag for "number-01.jpg"

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> <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>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

2 Answers

Sergey Podgornyy
Sergey Podgornyy
20,660 Points

Try to write:

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

I had the same problem

No no joy with that mate. I have the images on my computer so maybe its looking for them on work spaces but I cant upload them to it because well theres no option.

Sergey Podgornyy
Sergey Podgornyy
20,660 Points

You can drug&drop files from your computer to workspace.

Yeh no I watched one of the videos that showed how to drag and drop the files and tried it myself but no black pop up box to drop the files showed up and even when i tried dropping them anyway I had no joy. I also tried to go to file and hitting upload file and nothing happened it just closed the file manager. There is also no option or space to drop the files in the actual workspace chalenge.

It kind of feels like a technical issue

Josh Miclette
PLUS
Josh Miclette
Courses Plus Student 6,227 Points

Hi Iain, I just finished the challenge and this block of code worked for me:

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

I hope this helps.

Thanks for your help guys turns out it was <ul> <li><img src="numbers-01.jpg". alt=""></li> </ul> So no img/ and a full stop after .jpg"

Many thanks