Filter (Advanced Search)
Downloads
0
Views
248
Video

Video is not available... Embedded is previous playlist.

Details

The title attribute specifies extra information about an element. The information is most often shown as a tooltip text when the mouse moves over the element.

Example

<a href="https://www.gssskhokhar.com/html/" target="_blank" title="Go to GSSS KHOKHAR HTML section">Visit our HTML Tutorial</a>


<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Link Titles</title>
</head>
<body>

<h2>Link Titles</h2>
<p>The title attribute specifies extra information about an element. The information is most often shown as a tooltip text when the mouse moves over the element.</p>

<a href="https://www.gssskhokhar.com/html/" target="_blank" title="Go to GSSS KHOKHAR HTML section">Visit our HTML Tutorial</a>

</body>
</html>



Ad