Advertisement
Felanpro

Text-Shadow Property

Dec 5th, 2015
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.23 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.  
  6. <title>Testing</title>
  7.  
  8. <style>
  9. #text1 {
  10. color: green;
  11. text-shadow: 3px 1px lightgreen;
  12. }
  13. </style>
  14.  
  15. </head>
  16.  
  17.  
  18. <body>
  19.  
  20. <h1 id="text1">Text With Shadows!</h1>
  21.  
  22.  
  23. </body>
  24.  
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement