HSL text shadowing
by James Doyle
HTML
<h1>FOOTWARE</h1>
CSS
h1 {
text-decoration:none;
font-weight:bold;
font-size:5em;
color: hsl(30, 93%, 58%);
text-shadow: 0px 1px hsl(30, 93%, 30%), 0px -1px hsl(30, 93%, 80%);
}
by James Doyle
<h1>FOOTWARE</h1>
h1 {
text-decoration:none;
font-weight:bold;
font-size:5em;
color: hsl(30, 93%, 58%);
text-shadow: 0px 1px hsl(30, 93%, 30%), 0px -1px hsl(30, 93%, 80%);
}