6.
How would you display the "jshive.png" image using the correct HTML attribute?
<img link="jshive.png">
<img href="jshive.png">
<img src="jshive.png" alt="jshive">
<img src="jshive.png">
Correct: C, D
To display the "jshive.png" image, we use the img tag and set the src attribute to the image file path. The alt attribute is optional and provides alternative text for the image.