JS

HTML Code Quiz - tooltip homepage

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>