-
Which of the following gives a text description of the image if it is not available?
-
- src
- height
- alt
- title
- None of these
Correct Option: C
The alt attributes gives a text description of the image if the image is not available at a time. Syntax is
<img src=”apple.jpg” alt=”This is an apple, It is red” title=”apple”/>
src attribute defines the address of the image, title attribute provides some additional information about the image. Height attribute is used to adjust the height of an image as per need.