10.
How can you add a "tooltip" to the link that says "Go to homepage" in the following code?
<a href="index.html">Home</a>
<a href="index.html" totitle="Go to homepage">Home</a>
<a href="index.html" tooltip="Go to homepage">Home</a>
<a href="index.html" alt="Go to homepage">Home</a>
<a href="index.html" title="Go to homepage">Home</a>
Correct: D
In HTML, you can add a tooltip by using the title attribute. To add a tooltip saying "Go to homepage" to the link, the correct code would be <a href="index.html" title="Go to homepage">Home</a>. The 'title' attribute is specifically used to provide additional information about an element when the mouse hovers over it.