Sounds like you're using a tool to develop your application. You need to change the path to your images to be either a relative or absolute path on your webserver. Right now they are absolute to your file system.
Note how your path to the image starts with "file://". This tells the browser to find the image on the local computer. Since not everyone has the same folders and files on their personal computers, you need to change the path to be one that all computers can reference to retrieve the image from YOUR computer.
A relative path (in the source of your HTML pointing to the image) would look like:
<img src="/myfolder/myimages/image1.jpg">
An absolute path would look like:
<img src="http://www.mydomain.com/myfolder/myimages/image1.jpg">
Use one of these two methods to reference images, links, etc within your HTML files.