How to add URL to JPEG

I want this JPEG to direct people to www.bpustore.com when they click it. what do I need to add an active link?

                    Thanks,
                            Dominic

Simply wrap linking code <a href=“http://www.bpustore.com”></a> around your image.

It would look like this then:

<a href=“http://www.bpustore.com”><img src=“/supraturbo/r3_c2.jpg”></a>. Your image source (img src) would change if the location of that image was set up differently, either site root or document relative, etc.

This is standard HTML for linking an image.

geof