What is the correct syntax of <img> tag?

46. What is the correct syntax of <img> tag?

  1. <img src="url">
  2. <img src="url" alt="alternatetext">
  3. <img src="url" alt="alternatetext" />
  4. 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">

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.