top of page
 
Simple HTML coding
<b> bold </b>
Use this code if you want your text to be bold.

<i> italic </i>
Use this code if you want your text to be italic.
<u> underline </u>
Use this code if you want your text to be underlined.
<p> 
Use this code to change paragraph.

 
Complex HTML coding
<img src="link of your image">
Use this code if you want to link an image into your message

<font color="white" face="Tahoma" size="3"> Enter your text here. </font>
This code is long, but it is one of the most useful. It changes the police, color and size of your text. It is very useful when you want to personalize your HTML. In this example, my text would be white using the Tahoma font.
Color stands for color (You can use any color you want, there is a tool in the ressources. )
Face stands for police (Tahoma, Times new roman, Verdana, Trebuchet MS, etc.)
Size stands for size (From 1 to 10, please don't abuse it.)
STEP 2
Say you want to personalize even more.
<font color="grey" face="Times new roman" size="3"> Eric Hamilton :</font><font color="red">Here is my text.
It would give something like this -» Eric Hamilton : Here is my text.

 
<center> text </center>
Use this code if you want to center your text or a title.

<p align="justify"> text </align>
Use this code if you want your text to be justified.

bottom of page