Warp Gate

Client-side Map The image on the left is an example of a graphic with a "CLIENT SIDE MAP" embedded within this HTML document.

One image was created that looks like a number of buttons and text was applied to the "buttons". A map with co-ordinates equal to the number of pixels for each button was created and is part of this HTML document.

The map references these co-ordinates to URL's.

To look at the Map information and see how it is created, you will need the following instructions:

Netscape Users
Load this page full size, then select "DOCUMENT SOURCE"FROM THE "VIEW MENU" to see the source code.

Explorer Users
Simply click on this page with the "right" mouse button and select "View Source" from the drop down window.


Warp Gate

[The following code displays the "image" and tells where to look for the "map". The map can be found at the code with name reference "buttons2".]

<IMG BORDER=0 SRC="buttons/buttons2.gif" USEMAP="#BUTTONS2" ISMAP ALT="Client-side Map" hspace="2"></A>


[Here's the Name reference "buttons2":]

<MAP NAME="BUTTONS2">

<AREA SHAPE="rect" COORDS="1, 285, 105, 304" HREF="b16main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 266, 105, 284" HREF="b15main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 247, 105, 265" HREF="b14main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 228, 105, 246" HREF="b13main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 209, 105, 227" HREF="b12main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 190, 105, 208" HREF="b11main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 171, 105, 189" HREF="b10main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 152, 105, 170" HREF="b09main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 133, 105, 151" HREF="b08main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 114, 105, 132" HREF="b07main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 95, 105, 113" HREF="b06main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 76, 105, 94" HREF="b05frames.html" TARGET="_top">

<AREA SHAPE="rect" COORDS="1, 57, 105, 75" HREF="b04sidebar.html" TARGET="sidebar">

<AREA SHAPE="rect" COORDS="1, 38, 105, 56" HREF="b03main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 19, 105, 37" HREF="b02main01.html" TARGET="main">

<AREA SHAPE="rect" COORDS="1, 1, 105, 18" HREF="b01main01.html" TARGET="main">

<AREA SHAPE="rect" HREF="index.html" TARGET="_top" COORDS="0,0,106,304">

</MAP>

Anatomy of the tag:

<AREA SHAPE="rect" COORDS="1, 285, 105, 304" HREF="b16main01.html" TARGET="main">

  1. <AREA
  2. SHAPE="..."
  3. HREF="..."
  4. TARGET="..."
  5. >
Other related information:
  1. The first set of co-ordinates shown above will be the "last button" on the "image" and the last set of co-ordinates will be the "first button".

  2. The "COORDS=TLx, Tly, BRx, BRy" indicate in pixels, an area of the map that is "sensitive" to mouse clicks and the name following "HREF=" indicates the name of the HTML document that will be displayed when you press the mouse.