HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTMLで領域の形状を設定します


図形を使用 HTMLで領域の形状を設定する属性。次のコードを実行して、 shapeを実装してみてください。 属性-

<!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>

  1. 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 形状属性に適切な座標を指定して、画像マップの画像の領域を定義します。 ダウンロード ファ

  2. 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