Examveda

What is the correct HTML code for inserting an image ?
1. <img>image.gif</img>
2. <img href=”image.gif/>
3. <img src=”image.gif”>

A. Option 1

B. Option 2

C. Option 3

D. None of the above

Answer: Option C

Solution (By Examveda Team)

The correct HTML code for inserting an image uses the tag with the src attribute to specify the image source.

Option 1: <img>image.gif</img> - This is incorrect. The tag is self-closing and does not use a closing tag.

Option 2: <img href=”image.gif”/> - This is incorrect. The href attribute is used for links, not images.

Option 3: <img src=”image.gif”> - This is the correct answer. The src attribute specifies the path to the image.

Option D: None of the above - This is incorrect because Option 3 correctly lists the HTML code for inserting an image.

This Question Belongs to HTML >> HTML Fonts, Tags And Elements

Join The Discussion

Comments (1)

  1. Bhavya Sampat
    Bhavya Sampat:
    5 years ago

    Which of below statement is correct?
    a. a.blue, a.green{display:block;}
    b. a:blue{display:block;}

Related Questions on HTML Fonts, Tags and Elements