a class

Standard HTML tag for defining hyperlinks.

The following illustrations show: 

  1. The a style before applying CSS changes.

  2. The a style after the text-decoration property has been changed to none and the font-color property has been changed to blue.

Default CSSModified CSS


a {<br/> text-decoration: underline; <br/>}


a {<br/> text-decoration: none; <br/> font-color: blue; <br/>}