Everyone worries about their image. Artists do to. And when they get on the Internet, they have DOZENS of images to worry about. Putting an image on a Web page is one of the simplest tricks in HTML. You simply tell the browser the name of the image, what type of image it is, and if it's not in the same folder, WHERE that image is. The tag is simply (Remember to ignore the extra dot.) "IMG," as one might guess, stands for image, "SRC" stands for source. If the image is not in the same file, the file name should precede it such as "paintings/masterpiece.jpg" or if it's out there somewhere on the Internet (as sometimes happens) the title inside the quotation marks would, indeed, be an entire URL ending with the title of the image file. Images on the Internet are usually jpg's for good color resolution and detail or gif's for lower resolution, fewer colors, smaller files, and quicker loading (such as buttons, banners, or logos). However any type of image file may be used provided there is a corresponding file with the exact same title (which is case sensitive) stored somewhere the browser may access it.

Okay, that will get you an image on a Web page which is a little like turning a bull loose in a china shop. Next we need to learn to CONTROL it. First we need to give it a title in case, horror of horrors, it somehow fails to load. We use the "ALT" attribute to do this, adding ALT="My greatest masterpiece." This would follow the above image tag inside the < and >. This title is useful for slow loading images to give the viewer something to read over and over again until the picture arrives. It used to be important for "text only" browsers but since the last one of those was recently consigned to the Smithsonian, that's of little consequence now.

Now that we've given our raging bull a name, we must confine it to a certain size. This is done by telling the browser, in pixels, how big to make the picture. One inch equals 96 pixels, by the way. We would simply assert WIDTH="100" HEIGHT="200" right after the ALT tag still inside the same set of < >. The thing to remember here is to keep the image on file about the same size and proportions as it is called for in the HTML file. If the image on file is smaller than what's called for, the resolution of the page image suffers, and if it is larger, the loading time will be greater than necessary. The actual size the artist chooses to use would be determined by the amount of detail in the picture and the page layout itself with downloading time being a constant consideration in that decision.

And finally, training the bull, in effect, telling him "where to go," involves the attributes ALIGN=left (default) ALIGN=center, or ALIGN=right. These also are placed inside the image tag, usually at the end, and are pretty self-explanatory; but are best used with a healthy dose of trial and error in that text placement may be influenced by their use. Thus, the complete image tag would read This, of course, only covers the horizontal placement of the image and there are, indeed, instructions for vertical alignment but they are so complex and so seldom used today they are no longer important enough to be worth learning. Vertical control especially, and indeed, horizontal image placement as well, is almost always handled by the use of TABLES nowadays. And they will NOT be the subject of our next learned discourse. Instead, we'll deal with LINKS. Golf anyone?