question: which of the following is an example of html code that can be used in wordpress? <img…

question: which of the following is an example of html code that can be used in wordpress? <img alt=\image.jpg\ dir=\description of image\ /> audio src=\song.mp3\ gallery ids=\1,2,3\ <img src=\image.jpg\ alt=\description of image\ />
Answer
Answer:
D. <img src="image.jpg" alt="description of image" />
Brief Explanations:
The <img> tag is HTML. In HTML, the 'src' attribute is used for the source of the image and 'alt' for alternative text. Option A has incorrect 'dir' instead of 'src'. Options B and C use non - HTML shortcodes.