未分類

HTML 4.01 の勉強 (画像に複数のリンクを設定)

HTML 4.01 を勉強しましょう。

画像に複数のリンクを設定する方法を説明します。

以下の例では、

■コード

<map>
<area href="sample1.html" shape="circle" alt="円"></area>
<area href="sample2.html" shape="rect" alt="矩形 coords="100,150,200,250"></area>
<area href="sample3.html" shape="poly" alt="多角形"></area>
</map>

■ 説明
一つの画像に複数のリンクを設定できます。通常は map 要素内に記述します。shape 要素でリンクの形を指定できます。

-未分類