To insert images we use __________ tag.
2023
To insert images we use __________ tag.
- A.
picture
- B.
pic
- C.
img
- D.
image
Attempted by 228 students.
Show answer & explanation
Correct answer: C
The <img> tag is used to insert and display images in an HTML document. It is an empty element and typically uses the src attribute to specify the image source and the alt attribute to provide alternative text.
Example:
<img src="photo.jpg" alt="Sample Image">