google_map.html 566 B

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