text-shadow

HTML

<h1>Text with text-shadow</h1>

CSS

body{
    background:#000
}
h1 {
    font-size: 25px;
    font-family:Arial;
    color: black;
    text-shadow: 0 0 20px #FFF;
}