HTML Link Title Attribute

The attribute title provides extra information about a link, which is displayed as a tooltip upon mouse hover.

<a href="https://randomcodez.com" title="Random Codez Official Website">Visit Our Website</a>

Example

<!doctype html>
<html lang="en">
<head>
</head>
<body>
    <h1>HTML Link Title Attribute</h1>
    <a href="https://randomcodez.com" title="Random Codez">Link with title</a>
</body>
</html>

Overall

The title attribute helps in providing additional information about a link.

Related Articles