+ 1
Which tag is use for inserting image in HTML
THE tag
3 Respuestas
+ 1
Hay bro use search bar before asking que
By the way your answer <img> tag is used
Syntax:
<img src="image address" height="value" width="value" alt="value">
0
<img>
That was in the course !!
0
The "img" tag is used to insert the picture to an HTML page. There is no closing tag of "img" . You can out the image as given below:
<img src="Location of picture.jpg" alt="Alternative text " height="In pixels" width="In Pixels">
The "src" attribute is used to define the file location of the picture.
The "alt" attribute is used to show the alternative text instead of the picture if the browser does'nt support the picture.