> Can anyone verify that there is no way to specify > visited and hover within the A tag? Only declarations can be put into the 'style' attribute. The 'style' attribute takes the place of the selector, so you cannot specify another selector inside the attribute. :hover and :visited are pseudo-class selectors. color: blue is a declaration. Tim