Advertisement
puellae-themes

Basic Codes

Dec 2nd, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. BOLD: <b>text</b>
  2. ITALIC: <i>text</i>
  3. UNDERLINES: <u>text</u>
  4. STRIKE THROUGH: <s>text</s>
  5.  
  6. CENTER TEXT: <center>text</center>
  7. TEXT ON THE RIGHT: <div style="text-align: right;">text</div>
  8. TEXT ON THE LEFT: <div style="text-align: left;">text</div>
  9.  
  10. CHANGING COLOR:
  11. <font color="htmlcolor">text</font>
  12.  
  13. CHANGING SIZE:
  14. <font size="2">text</font>
  15. The number "2" is an example, you can put any number.
  16.  
  17. CHANGING COLOR & SIZE:
  18. <font size="2" color="htmlcolor">text</font>
  19.  
  20. MAKING A LINK:
  21. <a href="http://link">name</a>
  22.  
  23. If you want to open the link in a NEW window, use this code:
  24. <a href="http://link" target="_blank">name</a>
  25.  
  26. TEXT WITH A BACKGROUND:
  27. <div style="width:190px; height:12px; background-color:#000000; text-align:left; color: #ffffff;">text</div>
  28.  
  29. Change the width, the height, the background-color and the color text to your linking. You can replace "left" with "right" or "center" for those effects.
  30.  
  31. BORDER AROUND YOUR TEXT:
  32. <FIELDSET style="width:190px; height:12px; border: 1px solid #000000;">text</FIELDSET>
  33.  
  34. Change the width, the height and the color (#000000) to your liking. You can replace "solid" with "dashed" or "dotted".
  35.  
  36. PUTTING A IMAGE IN YOUR DESCRIPTION:
  37. upload the image you want on TinyPic, ImageShack or Photobucket. Get the direct link (it should end in .jpg for example) and use this code: <img src="directlink">
  38.  
  39. SCROLLING MARQUEE:
  40. go here
  41. http://www.myspacegens.com/handler.php?gen=marquee
  42. or here
  43. http://www.quackit.com/html/codes/stop_marquee.cfm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement