Advertisement
abhijit5893

HTML Formatting tags Part 1

Jul 13th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.42 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>HTML Formatting Tags Part 1</title>
  4. </head>
  5. <body>
  6.  
  7. <p><b>This text is bold</b></p>
  8. <p><big>This text is big</big></p>
  9. <p><em>This text is emphasized</em></p>
  10. <p><i>This text is italic</i></p>
  11. <p><strong>This text is strong</strong></p>
  12. <p>This is<sub> subscript</sub> and <sup>superscript</sup></p>
  13. <p><ins>This text is Inserted</ins></p>
  14. <p><del>This text is Deleted</del></p>
  15.  
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement