123456789101112131415 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Google Image Map</title>
- </head>
- <body>
- <h1>Google Image Map</h1>
- <img id="google_logo" src="google_map.png" usemap="#google_map" border="0" width="364" height="126"/>
- <map id="google_map" name="google_map">
- <area id="rectG" shape="rect" coords="0,0,90,100" href="mapped_page1.html" alt="area 1"/>
- <area id="circleO" shape="circle" coords="120,60,30" href="mapped_page2.html" alt="area 2"/>
- <area id="polyLE" shape="poly" coords="280,0,310,0,360,30,360,90,280,90" href="mapped_page3.html" alt="area 3"/>
- </map>
- </body>
- </html>
|