5.
Set the size of the image to 120 pixels wide and 65 pixels tall by using the correct HTML image attributes in the code below:
<img src="image.jpg" alt="My Image">
<img src="image.jpg" alt="My Image" resize="120x65">
<img src="image.jpg" alt="My Image" "width: 120px; height: 65px;">
<img src="image.jpg" alt="My Image" size="120x65">
<img src="image.jpg" alt="My Image" width="120" height="65">
Correct: D
The correct way to set the size of an image in HTML is by using the width and height attributes. In this case, the correct code would be <img src="image.jpg" alt="My Image" width="120" height="65">.