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 Build a Simple Website Text Editors and HTML Images and Lists

Travis Beaulieu
Travis Beaulieu
1,089 Points

I'm stumped on adding a jpg image from an "img" directory.

In one of the tasks I'm supposed to insert a ".jpg" image from an "img" directory. I don't know what an "img" directory is or how to use it. The code I typed into the body is img src="cupcake.jpg" (with closing opening and closing brackets, of course).

Help!

3 Answers

A directory is a folder in your site so what you probably have to do is this:

<img src="img/image.jpg" />
Peter Hearne
Peter Hearne
6,803 Points

or alternatively <img src="img/image.jpg" alt="image">