<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>문자 그림자 만들기</title> </head> <body> <h1 style="text-shadow: 5px 5px">Text-shadow: 5px 5px</h1> <h1 style="text-shadow: 5px 5px 5px gray">Text-shadow: 5px 5px 5px gray</h1> <h1 style="text-shadow: 5px 5px 9px #57c">Text-shadow: 5px 5px 9px #57c</h1> <h1 style="color: white; text-shadow: 0 0 10px #57c"> Text-shadow: 0 0 10px #57c</h1> <h1 style="color: white; text-shadow: 0 0 10px #57c, 0 0 15px red"> Text-shadow: 0 0 5px #57c, 0 0 10px red</h1> </body> </html>