KnowledgeBoat Logo

Computer Applications

Which will let text wrap down the side of the image?

  1. <img src="myImage.gif" align="wrap">
  2. <img src="myImage.gif" align="right">
  3. <img src="myImage.gif" wrap="on">

HTML Advanced Features

2 Likes

Answer

<img src="myImage.gif" align="right">

Reason — 'src' attribute specifies the URL of the image file and 'align = right' tells the browser to place an image against the right margin.

Answered By

1 Like


Related Questions