
The answer is very simple if you just know a little of HTML. To display a picture on the web, an image tag <img> is used. Thus:<img src="image URL" />(just concentrate on img leaving aside src if you are not familiar with HTML)To change the size, just add the attributes width="some number" and height="some number" (Note: the picture will be distorted {aspect ration changed) unless you keep the ratio constant. The task...