Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
h1 {
display: inline;
position: relative;
font: 150px Optima, serif;
letter-spacing: -5px;
color: rgba(150, 0, 255, 0.5);
}
h1:after {
content: "Welcome";
position: absolute;
left: 10px;
top: 5px;
color: rgba(255, 0, 100, 0.5);
}
</style>
</head>
<body>
<h1>Welcome</h1>
</body>
</html>