The <img> tag is used to display images on a webpage.
<img src="image.jpg" alt="Image description">
Specifies the path of the image.
<img src="photo.jpg">
Displayed when the image fails to load and used by screen readers.
<img src="logo.png" alt="Company Logo">
Used to control image size.
<img src="pic.jpg" width="200" height="150">
Shows text when mouse is hovered.
<img src="img.png" title="Hover text">
<img src="images/photo.jpg">
<img src="https://example.com/photo.jpg">
<img src="nature.jpg" alt="Nature Image" width="300">