HTMLで領域の形状を設定します
<!DOCTYPE html> <html> <head> <title>HTML shape attribute</title> </head> <body> <img src = "/images/html.gif" alt = "HTML Map" border = "0" usemap = "#html"/> <!-- Create Mappings --> <map name = "html"> <area shape = "circle" coords = "154,150,59" href = "about/about_team.htm" alt = "Team" target = "_self" /> </map> </body> </html>
-
HTML<area>タグ
HTMLのareaタグは、画像マップに領域を設定するために使用されます。 以下は属性です- 属性 値 説明 alt テキスト 領域の代替テキストを指定します。 座標 shape =rectの場合、coords =left、top、right、bottom shape =circの場合、coords =centerx、centery、radius shape =polyの場合、coords =x1、y1、x2、y2、..、xn、yn 形状属性に適切な座標を指定して、画像マップの画像の領域を定義します。 ダウンロード ファ
-
HTML タグ
HTMLのタグは、単一の入力改行を設定するために使用されます。 HTMLでbrタグを実装する例を見てみましょう- 例 <!DOCTYPE html> <html> <body> <h2>Demo Heading</h2> <p>This is a demo text! The next paragraph will appear after two line breaks.</p> <br><br> <p