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

Listing images

The question is to add images, such as "numbers-01.jpg", "numbers-06.jpg","numbers-09.jpg". I thought I was typing this in correctly, and I typed it in different ways and it still says its wrong. I know there is something wrong with what I typed. Can you help me?

Hi Amanda,

Would you mind posting your code so we can take a look at what you're doing?

Best, Cena

How do I post my code?

Take a look at the Markdown Cheatsheet link below the comment box. basically you just enclose the body of your code in 3 backticks.

So:

(3 backticks -spelled out because I can't figure out how to display them, d'oh)

your code

your code

etc

3 backticks

The backtick is the key located next to your number 1 key, with the tilde.

1 Answer

Tobias Mahnert
Tobias Mahnert
89,414 Points

Hi Amanda, did you put the unordered list items in the section element? And did you put the images in <img> tags? check the code below maybe it helps you.

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

Thank you!