20.
What HTML code will set the size of an image to 120 pixels wide and 35 pixels tall?
<img src="image.jpg" dimensions="120,35">
<img src="image.jpg" size="120x35">
<img src="image.jpg" width, height="120", "35">
<img src="image.jpg" width="120" height="35">
Correct: D
The correct answer is <img src="image.jpg" width="120" height="35">. It sets the width and height directly in the image tag attributes. This will ensure that the image is displayed with the specified dimensions of 120 pixels wide and 35 pixels tall.