<!DOCTYPE html>
<html>
<head>
<title>CSS Example</title>
<style>
body {
color:#000000;
background-color:#ffffff;
font-family:arial, verdana, sans-serif;
font-size:12px;}
.textShadow {text-shadow: 0.3em 0.3em 0.5em black; color:gray;}
</style>
</head>
<body>
<h1>text-shadow Property</h1>
<h1 class="textShadow">This heading should have a "drop" shadow</h1>
</body>
</html>