Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
h1 {
display: inline-block;
font-family: sans-serif;
font-weight: bold;
font-size: 40pt;
background: -webkit-gradient(linear, left top, right top,
from(rgb(25, 76, 192)), color-stop(20%, rgb(196, 26, 3)),
color-stop(40%, rgb(236, 190, 6)),
color-stop(60%, rgb(25, 76, 192)),
color-stop(80%, rgb(3, 116, 8)),
to(rgb(196, 26, 3)));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>
</head>
<body>
<h1>Cascading Style Sheets (CSS)</h1>
</body>
</html>