Non Gamstop Betting SitesNon Gamstop CasinosBest Casinos Not On GamstopNon Gamstop CasinoCasino Not On Gamstop
 Overview
1. Backgrounds
2. Downloads
3. Tables
4. Int. links

Image Maps


5. Frames
6. Image Maps
7. Transparency
8. Animations

In this section you will learn how to use image maps. Please click here to view the example web page you'll create. Within this example you may click regions of the image are actually hyperlinks.

This effect is achieved from the following code ...

<map name="imagemap1">

<area href="images/george.gif" shape="rect" coords="16, 43, 74, 198">

<area href="images/john.gif" shape="rect" coords="82, 70, 127, 115">

<area href="images/paul.gif" shape="rect" coords="146, 37, 210, 199">

<area href="images/ringo.gif" shape="rect" coords="263, 70, 334, 200"></map>

<img border="1" src="images/beatles_pic.jpg" usemap="#imagemap1">

This code is now explained...

<map name="imagemap1">
This simply gives the image map a reference name. This is closed with the tag </map>.

<area href="images/george.gif" shape="rect" coords="16, 43, 74, 198">
This creates a link to the picture george.gif. This link is a rectangle of the given coordinates. The four locations relate to the four pictures of the band members.

<img border="1" src="images/beatles_pic.jpg" usemap="#imagemap1">
This displays the image beatles_pic.jpg. The image map imagemap1 is used over this image.


Worth your time