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

How and where do I put images into the "File Tree"?

Nick refers to it in this segment and the next. I keep getting the notice that I need to add the "image tag" but I am matching my code to what he has written.

can you please add your code?

How do I add my code? Sorryβ€” I've been stuck on this all day!

Wrap your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help us with syntax highlighting.

        ```html
            Copy and Paste Your Code here
        ```
<section>
      <ul>
        <li>
          <img scr=img/numbers-01.jpg" alt=""
        </li>
        <li>
          <img scr=img/numbers-02.jpg" alt=""
        </li>
        <li>
          <img scr=img/numbers-06.jpg" alt=""
        </li>
      </ul>
    </section>```

2 Answers

You need to close the images tags. you're also messing the opening quotation mark in the src attribute. Also check the spelling for src. so

<img src="img/photo1.jpg" alt="photo1" />

That should be src - not scr