programming-examples/css/A link with a title attribute.html
2019-11-15 12:59:38 +01:00

12 lines
449 B
HTML

<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" subLang="en" xml:subLang="en">
<head>
<title>A link with a title attribute - see the tooltip when you hover over the link</title>
</head>
<body>
<p><a href="http://www.happycodings.com" title="Programming Code Examples">HappyCodings</a>.</p>
</body>
</html>