How to show another website's image in my website ?
Sometimes we may need to show image in our website from another
location. It’s possible using a simple code. Some file sharing website or photo
sharing website provide the opportunity to show image hosted there. If you use
any blog or website with limited bandwidth facility, then you must need this.
Now the code …
Show Image with this code:
<img
src="http://www.example.com/upload/images/image.gif"
width="350" height="250">
Show image with a link to
follow:
<a href="http://www.example.org/destination_url"><img
src="http://www.example.com/upload/images/image.gif"
width="350" height="250"></a>