how to style hyperlink text css

CSS
/*
<a href="#">Linky Boo</a>
*/

a {
  color: red;
  text-decoration: none;
  text-transform: uppercase;
}
Source

Also in CSS: