Text-Shadow Effects in CSS3

Here we specify the Text Shadow Effects in CSS3.
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. h1
  5. {
  6. text-shadow: 2px 3px 3px #FF00FF;
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <h1>My Name is Mahak</h1>
  12. </body>
  13. </html>
text-shadow: 2px 3px 3px #FF00FF;
Here we specify the horizontal shadow, the vertical shadow, the blur distance, and the color of the shadow.
12345.png