web stats
New Line: <br> end tag is </br>  
Bold: <b> end tag is </b>
 
Italics: <i> end tag is </i>
 
Underline: <u> end tag is </u>
 
Bold Italics, and Underline: <b><u><i> end tag is <b></u></i>

If you just want a different combination of Bold Italics or Underline simple just put a choice of those two codes together with an end tag after the select word/paragraph.

 
Strike through: <strike> end tag is </strike>
 
Overline: <overline> end tag is </overline>
 
Sup script: <sup> end tag is </sup>
 
sub script: <sub> end tag is </sub>
 
Sample Text: <sample> end tag is </sample>
 
Table:
 

<table border="1" width="44%">
<tr>
<td>text here</td>
</tr>
</table>
To make the table wider just change the percent sign higher than 44%
 

 
Table with border color and background:
 

<table border="1" width="44%" bgcolor="#000080" style="border-color: #000000">
<tr>
<td>&nbsp;</td>
</tr>
</table>
To change the color of the background change the bgcolor code to a different hex color, and to change the border-color to a different hex color for a different border color.
 

 
Table with two columns/background/ and border color:
 Text 1 Text 2

<table border="1" width="44%" bgcolor="#000080" style="border-color: #000000">
<tr>
<td>Text 1</td>
<td>Text 2</td>
</tr>
</table>
To change the color of the background change the bgcolor code to a different hex color, and to change the border-color to a different hex color for a different border color.
 

 
Table with two columns and rows/background/ and border color:
   
   

<table border="1" width="44%" bgcolor="#000080" style="border-color: #000000">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
To change the color of the background change the bgcolor code to a different hex color, and to change the border-color to a different hex color for a different border color.
 

 
Change font color: <font color="#HEX CODE HERE or COLOR"> tag ending is this </font>

 
 
Image: <img src="URL TO IMAGE HERE">

 
 
Background Picture for your profile:
Instruction #1: Place the code below in your STYLE area when editing your profile.

body
{
background-image: url('URL HERE'); background-repeat: repeat;
background-attachment: fixed;
background-color: 000000;
background-position: top right;
}

Instruction #2: Change where it says URL here to the image you wish to use.

Instruction #3: You see where it says fixed after background attachment and how it says repeat after background-repeat? You can change them to scroll, fixed, tiled, or repeat. See which one you prefer!

 
 
Change font style:
<font face="Vivaldi"> Just find a font you like by typing between the quotes.
 
  Change font size:
<font size="5"> just change the number bigger or smaller whichever you prefer.