What are the genral syntax for inline image?
-
src=img
-
src=image
-
img=file
-
img src=file
-
image src=file
D
Correct answer
Explanation
The correct HTML inline image syntax is
where 'img' is the tag name and 'src' is the attribute specifying the image file. Options A and B have the attribute and tag name reversed. Option C uses 'file' as the tag name, which is incorrect. Option E uses 'image' instead of the correct 'img' tag.