HyperImages
A hyperimage is an small image(thumbnail image) that acts as link to a larger version of the same image. This is usefull to save time in loading up a webpage where you may have a lot of images. Also, you can link to other webpages instead of linking to the larger image.
What you need:
- Small version of the image (< 100x100 pixels, lets call it smalldog.jpg).
- Regular sized version of the image (lets call it dog.jpg).
HTML Code to create it:
<A HREF="dog.jpg"> <IMG SRC="smalldog.jpg"> </A>
Try It