Answers for "alt image html"

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
0

add a alt to a image in html

<img src="path/to/image" alt="text describing image" />
Posted by: Guest on October-31-2021

Browse Popular Code Answers by Language