Advertisement
Guest User

text-formatting.html

a guest
Apr 25th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.72 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Text Formatting with HTML and CSS</title>
  5. </head>
  6. <style>
  7.     .u{text-decoration: underline;}
  8.     .ins{text-decoration: underline;}
  9.     .oline{text-decoration: overline;}
  10.     .i{font-style: italic;}
  11.     .em{font-style: italic;}
  12.     .b{font-weight: bold;}
  13.     .strong{font-weight: bolder;}
  14.     .del{text-decoration: line-through;}
  15.     .mark{background: yellow;}
  16. </style>
  17. <body>
  18.     <span class="u">Underline</span>
  19.     <span class="ins">Inserted</span>
  20.     <span class="oline">Overline</span>
  21.     <span class="i">Italic</span>
  22.     <span class="em">Empasys</span>
  23.     <span class="b">Bold</span>
  24.     <span class="strong">Strong</span>
  25.     <span class="del">Deleted</span>
  26.     <span class="mark">Marked</span>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement