Illumination of the link
To illuminate the link at prompting on it{her} of the cursor of a mousy, it is necessary to set such table of styles:
<style TYPE = "text/css"> <! - a:hover {color: red; mso-bidi-font-size:12pt}-> </style>
In this case all links to page at prompting on them of the cursor of a mousy will be highlighted by red color and to be rewritten by a font in the size in 12 pt.
That to one of links of it did not occur, it is necessary to set for it{her} compulsorily a font with the help tega <font> inside the link, for example:
<a href = *> Not highlighted link </a>
That one group of links was highlighted by one color, another another, it is necessary to write the table of styles differently a little:
<style> body a:Hover {color: red} .group1 {text-decoration: none; font-family: arial; font-size: 8pt; color: black} a:hover.group1 {text-decoration: none; font-family: arial, font-size: 8pt; color: blue} .group2 {font-family: arial, font-size: 10pt; color: green} a:hover.group2 {font-family: arial, font-size: 10pt; color: gray} </style>
In this case links for which the class group1 is specified, will be displayed not underlined, black color, font Arial in the size 8 pt. At prompting a mousy they become underlined and will be recoloured in dark blue color.
Links for which the class group2 is specified, will be underlined and to be displayed by a font of the size 10pt green color. At prompting a mousy they become grey.

|