Code
tk<!-- Include the kursor library -->
<script src="https://cdn.jsdelivr.net/npm/kursor@0.1.6/dist/kursor.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/kursor@0.1.6/dist/kursor.min.css" rel="stylesheet">
<script>
document.addEventListener('DOMContentLoaded', function() {
new kursor({
type: 1, // Choose the type of cursor
removeDefaultCursor: false,
color: '#000000' // Customize the cursor color
});
});
</script>