Advertisement
here2share

HTML underline and line-through

Aug 16th, 2016
198
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. <head>
  4. <style>
  5. h1 {
  6.     text-decoration: underline;
  7. }
  8.  
  9. h2 {
  10.     text-decoration: line-through;
  11. }
  12.  
  13. </style>
  14. </head>
  15. <body>
  16.  
  17. <h1>This is heading 1</h1>
  18. <h2>This is heading 2</h2>
  19.  
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement