The title attribute(different from alt) contains a text representing advisory information related to the element. The value of the title attribute is usually presented to the user as a tooltip, which appears shortly after the cursor stops moving over the image.
Use both width and height attributes to set the intrinsic size of the image, allowing it to take up space before it loads. You can also set the size of the image in CSS.
HTML Media
<img>
<img src="/media/myimage.jpg"
alt="description of the image here"
title="additional information here"
width="400px" height="300px">
<img src="/media/myimage.jpg">
<video>
<video width="320" height="240" controls>
<source src="myvideo.mp4" type="video/mp4">
</video>
<video width="320" height="240" autoplay muted>
<source src="myvideo.mp4" type="video/mp4">
</video>
<audio>
<audio controls>
<source src="myaudio.mp3" type="audio/mpeg">
</audio>
<audio controls autoplay muted>
<source src="myaudio.mp3" type="audio/mpeg">
</audio>