



#
“hreflang”属性について
“hreflang”属性はリンク先の記述言語を示します。属性値は言語コードで指定します。
“rel="alternate"”との併用でリンク先の文書が文書の翻訳版であることを示すことができます。
#
#
#
サンプルコード
<img src="sample_map.png" alt="イメージマップのサンプル" usemap="#sample8">
<map name="sample8">
<area href="index.html" hreflang="ja" shape="rect" coords="8,32,72,99" alt="リンク">
<area href="en/sample.html" hreflang="en" rel="alternate" shape="poly" coords="97,103,30,193,163,193" alt="英語版">
<area href="fr/sample.html" hreflang="fr" rel="alternate" shape="circle" coords="146,59,47" alt="フランス語版">
</map>