Guest
Private paste!

Untitled

By: a guest | Apr 25th, 2010 | Syntax: HTML | Size: 0.40 KB | Hits: 116 | Expires: Never
Copy text to clipboard
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. h1 {text-decoration:overline;}
  5. h2 {text-decoration:line-through;}
  6. h3 {text-decoration:underline;}
  7. h4 {text-decoration:blink;}
  8. </style>
  9. </head>
  10.  
  11. <body>
  12. <h1>This is heading 1</h1>
  13. <h2>This is heading 2</h2>
  14. <h3>This is heading 3</h3>
  15. <h4>This is heading 4</h4>
  16. <p><b>Note:</b> The "blink" value is not supported in IE, Chrome, or Safari.</p>
  17. </body>
  18.  
  19. </html>