JS

HTML Code Quiz - size of the image pixels

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">