htmlcssmouse-cursor

How to set a custom cursor in html?


I want to use a custom cursor icon for my web site (permanently).

How can I do it?

The cursor is downloaded as a simple .ico file. I have tried the custom cursor command but it did not seem to work.


Solution

  • html, body {
        cursor: url("cursor.ico"), default;
        /* just change the cursor.ico path to your location */
    }
    

    https://davidwalsh.name/css-custom-cursor