Computer Science, asked by kumarsumant2706, 4 months ago

write the tag to insert an image file"Automobile.bmp" in a web page.

Answers

Answered by anindyaadhikari13
1

Answer:

To insert the image file "Automobile.bmp" in web page, write the given HTML c∅de.

<img src="Automobile.bmp"/>

Explanation:

  • The <img/> tag is used to embed image in the web page.
  • General Syntax: <img src="_URL_" height="h_value" width="w_value"/>
  • The <img/> tag is an empty tag. It doesn't require any closing tag.
  • We can add the alt attribute in <img/> tag. It specifies the alternate text for the image. When the image is not loaded due to internet issues, the alternate text will be displayed in the place of the image.
Similar questions