How can you make an image responsive in HTML?
<img src="image.jpg" alt="Image" style="max-width:100%; height:auto;">
Use <img src="image.jpg" alt="Image" style="min-width:100%; height:auto;">
<img src="image.jpg" alt="Image" style="min-width:100%; height:auto;">
The above code is correct
Use <img src="image.jpg" alt="Image" responsive>
<img src="image.jpg" alt="Image" responsive>
Use <img src="image.jpg" alt="Image" width="auto" height="auto">
<img src="image.jpg" alt="Image" width="auto" height="auto">