HTML CSS examples for HTML Global Attribute:title
The title attribute adds additional information for an element, which is used by the browser to display tool tip information.
The following code shows how the title attribute is used.
<!DOCTYPE HTML> <html> <head> <title>Example</title> </head> <body> <a title="Apress Publishing" href="http://java2s.com">Visit the Apress site</a> </body> </html> <!-- w w w . j a v a 2 s . c o m-->