text-shadow: h-shadow v-shadow blur-radius color| none | initial | inherit;
<!DOCTYPE html>
<html>
<head>
<title> font-weight property </title>
<style>
p.simple{
text-shadow: 3px 3px red;
}
</style>
</head>
<body>
<p class="simple">
Simple Shadow
</p>
</body>
</html>
Glow Effect
<!DOCTYPE html>
<html>
<head>
<title> font-weight property </title>
<style>
p.fuzzy{
text-shadow: 3px 3px 3px violet;
font-size:30px;
text-align:center;
}
</style>
</head>
<body>
<p class="fuzzy">
Fuzzy Shadow
</p>
</body>
</html>
Glow Effect
<!DOCTYPE html>
<html>
<head>
<title> font-weight property </title>
<style>
p.multi{
text-shadow: -3px -3px 3px blue, 3px 3px 3px red;
font-size:30px;
text-align:center;
}
</style>
</head>
<body>
<p class="multi">
Multiple Shadows
</p>
</body>
</html>
Glow Effect
<!DOCTYPE html>
<html>
<head>
<title> font-weight property </title>
<style>
.multi{
text-shadow: 0 0 .1em cyan;
background-color: black;
font-size:50px;
text-align:center;
}
</style>
</head>
<body>
<div class="multi">
Glow Effect
</div>
</body>
</html>
Glow Effect