Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> h1 { display: inline; position: relative; font: 150px Garamond, serif; letter-spacing: -5px; color: #FFFFF0; } h1:after { content: "Welcome"; position: absolute; left: 10px; top: 5px; color: #FF69B4; } </style> </head> <body> <h1>Welcome</h1> </body> </html>