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 trialTravis Beaulieu
1,089 PointsI'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
Alec Burger
2,968 PointsA directory is a folder in your site so what you probably have to do is this:
<img src="img/image.jpg" />
Travis Beaulieu
1,089 PointsThat worked. Thanks!
Peter Hearne
6,803 Pointsor alternatively <img src="img/image.jpg" alt="image">