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

Marcus Thornton
Marcus Thornton
428 Points

Show me an image tag

I'm instructed to add just images, no links to list tags and leave alt blank.

2 Answers

Sorry just to add to Steve's answer the task is actually incorrect and the images are not in a folder so the code should look like this:

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

You are absolutely correct! That's me just going back over old threads I'd answered rather than checking the latest challenges - apologies!

Steve.

No problem it's quite funny because I had already come across this problem today!

Also I have noticed you work at Big Dog!

I do work at Big Dog Consultants, yes. :-)

You might know my dad, he works as a freelance graphic designer?

Different company - Big Dog Consultants is my own company and it just employs me.

Oh I see! Sorry for mixing you up :) Also it's a shame Treehouse doesn't have a place to discuss things like this in a live chat or discussion board :'(

Better collaboration would be cool, I agree. I'm sure it's on the list of things to do!

The code will look like this once you've done that task:

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

Steve.

Marcus Thornton
Marcus Thornton
428 Points

Thanks Steve. Really appreciate that.

No problem!

Steve.