Example: Rollover Script


Before

  <a href="page.html" onMouseOut="out(1)"
                       onMouseOver="over(1)" ...>Link Text</a>

After

  <style type="text/css">
    a:hover { ... }
  </style>
  ...
  <a href="page.html" ...>Link Text</a>