CCS3 allows you to create text Shadow. the code is the same as box-shadow except for there is no spread value. the shadow uses and x-offset, y-offset, blur, aand a color value.
Use CSS3 to add text shadow to the following h2 elements using this code:
text-shadow:5px 5px 5px red;
Used as follows:
p
[
text-shadow:x-offset blur color;
]