Text glow effects with CSS
by danielkwood
HTML
<html>
<head>
<title>Text glow effects</title>
<link rel="stylesheet" href="theme.css"/>
</head>
<body>
<p>This text has a glow effect</p>
</body>
</html>
CSS
p{
font-family: Arial;
color: blue;
text-shadow: 0px 0px 5px purple;
}