Computer Science, asked by karthideepa1983, 8 months ago

write a html program for adding title to a image​

Answers

Answered by Anonymous
1

Answer:

Add an image to your content asset, then click HTML and locate the image tag, it will look like the following:

<img src="image.png" alt="Your Alt Tag is Here" />

Add title="<value>" to the tag, within the empty quotations enter the text that will appear when someone hovers over the image. In the end, your modified <img> tag will look something like this:

<img title="Title Tag Goes Here" src="image.png" alt="Your Alt Tag is Here" />

Note: The order left to right of the title, src and alt does not matter, they can be in any order.

Click HTML again to return to the regular view, when you hover over the image the new title tag should appear.

Click Save Content to save your changes.

Similar questions