Advertisement
Unzo

Basic Codes

Oct 16th, 2013
2,884
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. Basic Codes by Unzo - http://unzo.tumblr.com/
  2.  
  3. FONT STYLING
  4.  
  5. Bold Text - <b>Bold text</b>
  6.  
  7. Italic Text - <i>Italic text</i>
  8.  
  9. Underlined Text - <u>Underlined text</u>
  10.  
  11. Strike Trough Text - <s>Strike through text</s>
  12.  
  13. Center Aligned Text - <center>Center aligned text</center>
  14.  
  15. Left Aligned Text - <div align="left">Left aligned text</div>
  16.  
  17. Right Aligned Text - <div align="right">Right aligned text</div>
  18.  
  19.  
  20. IMAGE
  21.  
  22. Image - <img src="URL">
  23.  
  24.  
  25. LINKS
  26.  
  27. Link - <a href="URL">Title</a>
  28.  
  29. Link (in a new window) - <a target="_blank" href="URL">Title</a>
  30.  
  31. Link (with image) - <a target="_blank" href="URL"><img src="IMAGE URL"></a>
  32.  
  33.  
  34. FONTS
  35.  
  36. Changing Font Size - <div style="font-size:15px;">Font is 15px</div>
  37.  
  38. Changing Font Color - <font color=”red”>Color is red</font>
  39.  
  40. - <font color=”#FF0000”>Color is red</font>
  41. Choose your color here: http://www.colorpicker.com/
  42.  
  43. Text With Background - <div style="background-color:yellow;display:inline-block;">Background color yellow.</div>
  44.  
  45. - <div style="background-color:#FFEA00;display:inline-block;">Background color yellow.</div>
  46. Choose your color here: http://www.colorpicker.com/
  47.  
  48. Text With A Border - <div style="border:1px solid black;display:inline-block;padding:5px 7px;">Text</div>
  49.  
  50. - <div style="border:1px solid #000000;display:inline-block;padding:5px 7px;">Text</div>
  51. Choose your color here: http://www.colorpicker.com/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement