gradient text

http://css-tricks.com/snippets/css/gradient-text/

by jshacker

HTML

<h1>Gradient In The Text</h1>

CSS

h1 {
  font-family: monospace;
  font-size: 10rem;
  background: linear-gradient(45deg, red, green, blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(140, 140, 140, 0.33);
}