Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Marcy Davis
387 PointsHow 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.

Marcy Davis
387 PointsHow do I add my code? Sorry— I've been stuck on this all day!

Ali M Malik
33,293 PointsWrap 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
```

Marcy Davis
387 Points<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

Ali M Malik
33,293 PointsYou 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" />

Patsy Tisdale
5,049 PointsThat should be src - not scr
Ali M Malik
33,293 PointsAli M Malik
33,293 Pointscan you please add your code?