Home »
MCQs »
HTML MCQs
What is the correct syntax of <img> tag?
46. What is the correct syntax of <img> tag?
- <img src="url">
- <img src="url" alt="alternatetext">
- <img src="url" alt="alternatetext" />
- All of the above
Answer: D) All of the above
Explanation:
The correct syntax of <img> tag is/are:
<img src="url" alt="alternatetext" />
We can also use,
<img src="url">
<!--Or-->
<img src="url" alt="alternatetext">