Text Gradient

by pphheerroonn

HTML

<h1>Hello There</h1>

CSS

h1{
  font-size: 72px;
  background: -webkit-linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  }