Code
<html>
<head>
<script type = "TEXT/JAVASCRIPT" LANGUAGE = "JAVASCRIPT">
function doShadow(newDiretction){
if (document.all && newDiretction < 360) {
newDiretction += 10
document.all.dropText.style.filter="shadow(direction=" +
newDiretction + ")"
setTimeout("doShadow(" + newDiretction + ")" , 100)
}
}
</script>
<STYLE TYPE="TEXT/CSS">
#dropText {width: 500px; height: 100px; font-size: 36px; filter:
shadow(direction=90)}
</STYLE>
</head>
<body>
<DIV ID="dropText">
abc.com
</DIV>