Rainbow Shadow

This is how you can add a rainbow shadow to your text!

Example

The HTML

This going into the BODY of your webpage (in between <body> and </body> tags)

<h1>
🌈Hi, Friend!✨
</h1>

The CSS

This going into the HEAD of your webpage (in between <head> and </head> tags)

h1{
  text-align: center;
  font-family: sans-serif;
  font-size: 72px;
	font-family: 'Tahoma', sans-serif;
	font-weight: bold;
  font-variant: small-caps;
  text-shadow: 
		-2px -4px 2px #fa8085,
    -2px -8px 2px #fd9d7c,
    -2px -12px 2px #fbd97d,
    -2px -16px 2px #a3d963,
    -2px -20px 2px #2ec7d6,
    -2px -24px 2px #9c70cc;
    -2px -28px 2px #fd7ab0;
}