タグっ子 −HP作成タグ−
 MAIN  HTML一覧)  STYLESEET一覧)  CGI/Perl  色の基本
HTML
リンク
他のページ
同じページ
他ページ指定場所
リンク先を別ウィンドウに
メール
ひとつの画像に複数リンク

 ひとつの画像に複数のリンク
<map name="名前"> 〜 </map>
<area href="URL" shape="形" alt="文字" coords="領域座標"> 〜 </area>


| rect :四角形 | circle :円形 | poly :多角形 |

座標
四角形 :左上x, y, 右下x, y
円形 :中心x, y, 半径
多角形 :角の座標x1, y1, x2, y2, x3, y3, x4, y4, x5, y5, ・・・

<!doctype html public "-//w3c//dtd html 4.0 transitional//en" "http://www.w3.org/tr/rec-html40/loose.dtd">

<html>
 <head>
  <title>ひとつの画像に複数のリンク</title>
 </head>

 <body>
  <img border="0" src="sam_ht061.gif" usemap="#sample" width="400" height="200">
  <map name="sample">
   <area href="index.html" shape="circle" alt="円形" coords="50,100,50">
   <area href="index.html" shape="poly" alt="多角形" coords="200,50,200,150,250,100,300,140,350,70,250,10">
  </map>
 </body>
</html>


sample

円形 多角形