Thumbnail images are very small (viewing and file) size images i.e. they are resized images that are not only small physical size but small file size. Real thumbnails are NOT just images that look smaller because the are being resized with the width and height attributes of the img tag.
The benefit of a real thumbnail is that it loads a small size 'preview' images very fast. This will only happen if the file size is small. There is no real advantage using the image tag to make a thumbnail because the file size is exactly as the full image.
BTW: There are freeware programs for creating Thumbnails. One simple program that generates a simple web page is Thumbnailer . Another freeware that has more options for .jpg photos (but does not create web page code) is KD
Many people prefer to use their favorite graphics program to make thumbnails - one at a time. This allows 'fine tuning' instead of 'batch conversions'. No matter what is used, it's better to finalize the full size image (see optimizing tips) before creating a thumbnail. Making a thumbnail with a 'general' graphics program is simple:


By using an image tag inside an anchor tag, the image becomes a link. Placing the 'preview' thumbnail image in an anchor tag, will make it a link to the full size image (or a web page with the full size image).
If the image is named mypic.jpg and the thumbnail is mypict.jpg, the code for a web page would be:
|
<a href="mypic.jpg">
<img src="mypict.jpg" border="0"> </a> |
For posting images on a forum, include the full path, such as:
|
<a href="http://yourdomain/mypic.jpg">
<img src="http://yourdomain/mypict.jpg" border="0"> </a> |
Note: the border=0 turns off the lines (border) around an image that is a link. Set to 1 or above to show the border with the 'link' color.