programming-examples/css/Change Cursor.html
2019-11-15 12:59:38 +01:00

19 lines
328 B
HTML

<html>
<head>
<title>Change Cursor</title>
<style type="text/css">
.xlink {cursor:crosshair}
.hlink{cursor:help}
</style>
</head>
<body>
<b>
<a href="http://www.happycodings.com" class="xlink">happycodings</a>
<br>
<a href="http://www.android.happycodings.com" class="hlink">android</a>
</b>
</body>
</html>