KnowledgeBoat Logo
|
LoginJOIN NOW

Computer Applications

The correct HTML code for inserting an image is

  1. <IMG href="image.gif">
  2. <IMG> image.gif</gif>
  3. <IMG src = "image.gif ">
  4. <IMAGE src = "image.gir">

HTML Intro

6 Likes

Answer

<IMG src = "image.gif ">

Reason — The <IMG> tag is used to insert an image in a web page. The src attribute helps in defining the source of an image. It is defined as follows:

<IMG src = "image.gif ">

Answered By

2 Likes


Related Questions