This is a quick CSS snippet for custom cursors on your website. You will have to find your own cursor images!
Example
The CSS
Put into the <HEAD> </HEAD> of your document
<style>
* {
cursor: url(https://i.postimg.cc/GtP8GP49/arrow3_purple.png),auto !important;
}
a:hover{
cursor: url(https://i.postimg.cc/C5CBkCRz/arrow4_purple.png),auto !important;
}
</style>