What does this code display?

A gradient that starts at the top and changes from white to grayA gradient that starts at the bottom and changes from black to green<html> <head> <style> h1 { background: linear-gradient(white, gray); padding: 50px; } body { text-align: center; } </style> </head> <body> <h1>The Gray</h1> </body> </html>]]>

A gradient that starts at the top and changes from white to gray.