- The color changes from white at the top to gray at the bottom
- The color changes from gray at the top to white at the bottom
- The color changes from white on the left to gray on the right
<html> <head> <style> h1 { background: linear-gradient(white, gray);}</style> </head> <body> <h1>The Gray</h1> </body> </html>]]>The color changes from white at the top to gray at the bottom.