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 Introduction to HTML and CSS (2016) Adding a New Web Page Write the HTML

D'Andre Herron
D'Andre Herron
219 Points

Can not get image to show in web browser.

The alt description of the picture shows but, the picture that I want to display doesn't show. How do I get the image to show?

<img scr="https://placeimg.com/200/200/animals" alt="Image of animals">

1 Answer

Drew Cook
Drew Cook
14,612 Points

I believe this is most likely not happening because you have misspelled the source attribute within your image tag. You can see you have typed 'scr' instead of the appropriate 'src'.

Use...

<img src="https://placeimg.com/200/200/animals" alt="Image of animals">

...and it should work.

Drew, good catch!!