A Cursor is the icon for your mouse. Usually it is an ARROW, but you can chage the style with several different options. It is always possible to change the cursor for images, text, tables and more...

These are some of the possiblities: [hover over the names to see the cursor styles]
 default cursor
 crosshair cursor
 hand cursor
 help cursor
 move cursor
 text cursor
 wait cursor
 n-resize cursor
 ne-resize cursor
 nw-resize cursor
 e-resize cursor
 col-resize cursor


To add a different cursor just add this code style="cursor:crosshair"

To add a cursor to the Body:
<body style="cursor:crosshair">

To add a cursor to an Image:
<img src="url of image" style="cursor:crosshair">          example:

To add a cursor to a Table:
<table style="cursor:crosshair"><tr><td> --crosshair cursor --</tr></td></table> example:
--crosshair cursor --


To add a cursor to the Font:
<font style="cursor:crosshair">--wait cursor --</font>          example: --wait cursor --

To add a cursor to the Links:
<style type=text/css><!-- a:hover{cursor:hand} //--></style>

To add a Image to your cursor:
<style type="text/css"><!-- BODY { cursor:url("URL OF IMAGE"); }--></style>