<MAP></MAP>
説明:
マップデータであることを宣言する →<IMG>専用 (参)<AREA>
オプション:
NAEM="" マップに名前をつける
使用例:
<Html>
<Body>
<H2>下の地図をクリックしてください</h2>
<Img Src="map.jpg" Usemap="#mapdata" Border=0>
<Map Name="mapdata">
<Area Shape=rect Coords=0,0,100,100 Href="mame1.html">
<Area Shape=rect Coords=300,0,400,100 Href="mame2.html">
<Area Shape=rect Coords=0,200,100,290 Href="mame3.html">
<Area Shape=rect Coords=200,200,300,290 Href="mame4.html">
</Map>
</Body>
</Html>
map.jpgのイメージの中の4つの四角のポイントをクリックすると
それぞれのページに飛ぶようにできます