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"> <area href="images/george.gif"
shape="rect" coords="16, 43, 74, 198"> <img
border="1" src="images/beatles_pic.jpg" usemap="#imagemap1"> |