HTML <img>タグ


画像を挿入する方法:

<img src="img_girl.jpg" alt="Girl in a jacket" width="500" height="600">

以下の「自分で試してみてください」の例をもっと見てください。


定義と使用法

タグは、<img>HTMLページに画像を埋め込むために使用されます。

画像は技術的にWebページに挿入されません。画像はウェブページにリンクされています。<img>タグは、参照される画像の保持スペースを作成します

<img>タグには2つの必須属性があります

  • src-画像へのパスを指定します
  • alt-何らかの理由で画像を表示できない場合に、画像の代替テキストを指定します

注:また、画像の幅と高さは常に指定してください。幅と高さが指定されていない場合、画像の読み込み中にページがちらつくことがあります。

ヒント:画像を別のドキュメントにリンクするには、タグを<a><img>タグ内にネストするだけです(以下の例を参照)。


ブラウザのサポート

Element
<img> Yes Yes Yes Yes Yes

属性

Attribute Value Description
alt text Specifies an alternate text for an image
crossorigin anonymous
use-credentials
Allow images from third-party sites that allow cross-origin access to be used with canvas
height pixels Specifies the height of an image
ismap ismap Specifies an image as a server-side image map
loading eager
lazy
Specifies whether a browser should load an image immediately or to defer loading of images until some conditions are met
longdesc URL Specifies a URL to a detailed description of an image
referrerpolicy no-referrer
no-referrer-when-downgrade
origin
origin-when-cross-origin
unsafe-url
Specifies which referrer information to use when fetching an image
sizes sizes Specifies image sizes for different page layouts
src URL Specifies the path to the image
srcset URL-list Specifies a list of image files to use in different situations
usemap #mapname Specifies an image as a client-side image map
width pixels Specifies the width of an image


グローバル属性

この<img>タグは、HTMLのグローバル属性もサポートしています。


イベント属性

この<img>タグは、HTMLのイベント属性もサポートしています。


その他の例

画像の整列(CSSを使用):

<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:bottom">
<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:middle">
<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:top">
<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="float:right">
<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="float:left">

画像の境界線を追加(CSSを使用):

<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="border:5px solid black">

画像に左右の余白を追加します(CSSを使用):

<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:middle;margin:0px 50px">

画像に上下の余白を追加します(CSSを使用)。

<img src="smiley.gif" alt="Smiley face" width="42" height="42" style="vertical-align:middle;margin:50px 0px">

別のフォルダまたは別のWebサイトから画像を挿入する方法:

<img src="/images/stickman.gif" alt="Stickman" width="24" height="39">
<img src="https://www.w3schools.com/images/lamp.jpg" alt="Lamp" width="32" height="32">

画像にハイパーリンクを追加する方法:

<a href="https://www.w3schools.com">
<img src="w3html.gif" alt="W3Schools.com" width="100" height="132">
</a>

クリック可能な領域を使用して画像マップを作成する方法。各領域はハイパーリンクです。

<img src="workplace.jpg" alt="Workplace" usemap="#workmap" width="400" height="379">

<map name="workmap">
  <area shape="rect" coords="34,44,270,350" alt="Computer" href="computer.htm">
  <area shape="rect" coords="290,172,333,250" alt="Phone" href="phone.htm">
  <area shape="circle" coords="337,300,44" alt="Cup of coffee" href="coffee.htm">
</map>

関連ページ

HTMLチュートリアル:HTML画像

HTML DOMリファレンス:画像オブジェクト

CSSチュートリアル:画像のスタイリング


デフォルトのCSS設定

ほとんどのブラウザは<img>、次のデフォルト値で要素を表示します。

img {
  display: inline-block;
}