Answers for "what is the alt attribute in the image tag used for"

3

html img alt

<!-- The required alt attribute specifies an alternate text for an image, 
if the image cannot be displayed (screen reader...). -->
<img src="img_girl.jpg" alt="Girl in a jacket" width="500" height="600">

<img src="img_girl.jpg" alt="Girl in a jacket" 
     longdesc="img_girl-longdesc.html">  <!-- long description -->
Posted by: Guest on April-05-2021

Code answers related to "what is the alt attribute in the image tag used for"

Browse Popular Code Answers by Language