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 {
text-decoration: underline;
}


a {
text-decoration: none;
font-color: blue;
}