HTML: The Definitive Guide

Previous Chapter 2
HTML Quick Start
Next
 

2.8 Images Are Special

Image files are multimedia elements you may reference with anchors in your HTML document for separate download and display by the browser. But, unlike other multimedia, standard HTML has a provision for image display "in line" with the text,[5] and images can serve as intricate maps of hyperlinks. That's because there is some consensus in the industry concerning image file formats--specifically, GIF and JPEG--and the graphical browsers have built in decoders that integrate those image types into your document.

[5] Browser developers are integrating other multimedia besides GIF and JPEG graphics for inline display. Internet Explorer, for instance, supports a tag that plays background audio.

Inline Images

The HTML tag for inline images is <img>; its required src attribute is the URL of the GIF or JPEG image you want to insert in the document. [the section called "The <img> Tag"]

The browser separately loads images and places them into the text flow as if the image were some special, albeit sometimes very large, character. Normally, that means the browser aligns the bottom of the image to the bottom of the current line of text. You can change that with the special <img> align attribute whose value you set to put the image at the top, middle, or bottom of adjacent text. Examine Figure 2.2 through Figure 2.4 for the image alignment you prefer. Of course, wide images may take up the whole line, and hence break the text flow. Or you may place an image by itself, by including preceding and following paragraph or line-break tags.

Experienced HTML authors use images not only as supporting illustrations, but also as quite small inline characters or glyphs, added to aid browsing readers' eyes and to highlight sections of the documents. Veteran HTML authors commonly add custom list bullets or more distinctive section dividers than the conventional horizontal rules. Images, too, may be included in a hyperlink, so that users may select an inline thumbnail sketch to download a full-screen image. The possibilities with inline images are endless.

Image Maps

Image maps are images within an anchor with a special attribute: they may contain more than one hyperlink.

One way to enable an image map is by adding the ismap attribute to an <img> tag placed inside an anchor tag (<a>). When the user clicks somewhere in the image, the graphical browser sends the relative x,y coordinates of the mouse position to the server that is also designated in the anchor. A special server program then translates the image coordinates into some special action, such as downloading another HTML document. [the section called "Server-Side Image Maps"]

A good example of the use of an image map might be to locate a hotel while traveling. The user clicks on a map of the region they intend to visit, for instance, and your image map's server program might return the names, addresses, and phone numbers of local accommodations.

While very powerful and visually appealing, these standard so-called server-side image maps mean that HTML authors must have some access to the map's coordinate-processing program on the server. Many authors don't even have access to the server. Recent innovations in browser software remove those barriers by enabling client-side image maps.

Rather than depending on a web server, the usemap attribute for the <img> tag and the <map> and <area> tags let HTML authors embed all the information the browser needs to process an image map in the same document as the image. Because of their reduced network bandwidth and server independence, client-side image maps are becoming increasingly popular among HTML authors. [the section called "Client-Side Image Maps"]


Previous Home Next
Hyperlinks Book Index Lists, Searchable Documents, and Forms

HTML: The Definitive Guide CGI Programming JavaScript: The Definitive Guide Programming Perl WebMaster in a Nutshell