How can you specify the dimensions of an image in HTML?
<img src="image.jpg" width="300px" height="200px" alt="Example">
Use <img src="image.jpg" dimensions="300x200" alt="Example">
<img src="image.jpg" dimensions="300x200" alt="Example">
Use <img src="image.jpg" style="width:300px;height:200px;" alt="Example">
<img src="image.jpg" style="width:300px;height:200px;" alt="Example">
All the options are correct
The above code is correct