- Add the image you want to use as an image map to your Web page.
- In the <IMG> tag for the image, type UseMap="#?" replacing ? with a name for the image map.
- Position the cursor where you want to enter the information for the image map. Most people enter this information at the bottom of the Web page.
- Type <Map Name="?"> replacing ? with the image map name you typed in step 2.
- Type <Area> to specify the information for one image area of the image map. Then press the SpaceBar.
- Type Shape="?" replacing ? with the shape of the area
(rect for rectangle, circle for circle or poly for an irregular shape). Then press the SpaceBar.
- For a rectangle, type Coords="a,b,c,d" where a,b are the coordinates of the top left corner and c,d are the coordinates of the bottom right corner.
- For a circle, type Coords="a,b,r" where a,b are the coordinates for the center of the circle and r is the radius.
- For a polygon, type Coords="a,b,c,d..." where a,b,c,d and so on are the coordinates of each point on the polygon.
- Press the SpaceBar.
- Type <HREF="?"> replacing ? with the address of the Web page you want the image area to link to.
Note: To link the image area to a Web page in your own Web site, replace ? with the location of the Web page on your computer.
- Repeat steps 5 to 9 for each image area.
- Type </Map> to complete the image map.
|