Code:<img src="http://red.gif" name="one" border=0>
If I have a file called "red.gif" located some where on my hard drive, how can I point the src to that directory?
Thanks
Printable View
Code:<img src="http://red.gif" name="one" border=0>
If I have a file called "red.gif" located some where on my hard drive, how can I point the src to that directory?
Thanks
Use file rather than HTTP:
Quote:
<img src="file://C:\folder\red.gif" name="one" border=0>
Thanks Josh