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 trialChristopher Mlalazi
Front End Web Development Techdegree Graduate 17,305 PointsImages Folder on Workspace
I need clarification about the Workspace space/panel where we save images. What if I am using other text editors like Sublime text do they also have a place like that where I can store my images so that I can refer to them or this is a facility only available here on Workspace. I hope my question is clear.
4 Answers
Paul K.
12,110 Pointsgo to the directory of the file you are editing it. simple create a folder called images in the same directory. then you can save your images there..
when you want to refer to your picture files you would have to do this..
<img src="images/filename">
hope it makes sense.. it's a hard thing to explain because it's more of a visual thing.
Christopher Mlalazi
Front End Web Development Techdegree Graduate 17,305 PointsWhat if I am using Sublime text or other code editors do they have the same facility of saving image folders like in Workspace? Maybe my question is not clear too
Paul K.
12,110 Pointssublime text is running on your computer, locally. Workspace is the same thing but it's happening on the browser..
so if you add images to workspace, it will not appear in your code when using sublime..
Christopher Mlalazi
Front End Web Development Techdegree Graduate 17,305 PointsThanks Paul I think I get it. When using Sublime Text we only store/save images on folders in the computer right?
Paul K.
12,110 Pointsexactly! it's a totally separate thing.