Gradient text

by Ivan Vasilyev

HTML

<h1>Gragient</h1>

CSS

h1 {
  
  font-size: 72px;
  background: -webkit-linear-gradient(top, #eee, #000);
  background: -moz-linear-gradient(top, #eee, #000); 
  background: -o-linear-gradient(top, #eee, #000); 
  background: -ms-linear-gradient(top, #eee, #000); 
  background: linear-gradient(top, #eee, #000);   
    
  -webkit-background-clip: text;
  -moz-background-clip: text;  
  -o-background-clip: text;  
  background-clip: text;  
  color: transparent;
  
}