This tag is used to embed images into a web page. This image tag <img>
has two required attributes:
src
- Specifies the path to the image
alt
- Specifies an alternate text for the image, if the image for some reason cannot be displayed.
height
- Specifies the height of the image in pixels.
width
- Specifies the width of the image in pixels.
Using <img>
to embed an image into a web page
<img src="dog.jpg" alt="My Dog" width="500" height="600">
Using <img>
when the source of an image is a URL
<img src="https://pbs.twimg.com/profile_images/1267892245362913281/2rm_VB9z.png" alt="CODE" width="500" height="600">
<img >
<img>
tag must not contain any content, and it does not require a closing tag.For more information, see http://www.w3schools.com/tags/tag_img.asp
Found a bug in the documentation? Let us know at documentation@code.org