Embeding images in html files.
Go to:
http://www.motobit.com/util/base64-decoder-encoder.asp and use the 'select a file to convert to a base64 string.' then hit 'Convert the source data'.
Once the page loads, you will get a bunch of gibberish in the text box. On your html page, put:
<image src="data:image/jpg;base64,CODE FROM ABOVE">
Be sure to replace 'jpg' in the above code with the original format of the image! (bmp, gif, png, etc)
Example:
http://mop.110mb.com/test.htmWhy is this usefull? If you embed images on your site, people cannot hotlink to your image on their site! (Make the image appear on their site but its hosted off your site). Saves your bandwith
