css cursor clickable code example
Example 1: change mouse pointer on hover button
<form>
<input type="submit" style= "cursor:pointer" value="Button" name="Button">
</form>
Example 2: cursor as image css
You can use own image or emoji as cursor
<style>
a{
cursor: url("custom.gif"), url("custom.cur"), default;
}
</style>
<p>Place your mouse pointer <a href="#">over me</a> to reveal the custom cursor.</p>