If you want the cursor effect for one individual link, make it look like this:

<a href="http://www.geocities.com/lil_toronto_babe/URL%20GOES%20HERE" style="cursor:CURSORNAME">Text</a>

If you want the cursor effect throughout your whole page, use this in your link html:

<STYLE type="text/css"><!-- A:link{COLOR: 000000; TEXT-DECORATION: none; font-weight: normal;} A:visited{COLOR: 000000; TEXT-DECORATION: none; font-weight: normal;} A:active{COLOR: 000000; TEXT-DECORATION: none; font-weight: normal;} A:hover{COLOR: 000000; TEXT-DECORATION: none; cursor:CURSORNAME;} --></STYLE>

See where in both of those codes where it says in caps CURSORNAME? You replace that with the following names:

  • crosshair
  • wait
  • help
  • text
  • default
  • n-resize
  • s-resize
  • w-resize
  • e-resize
  • ne-resize
  • nw-resize
  • se-resize
  • sw-resize
  • move
  • hand

    <--Back 1