>>> APPENDIX A: (MAIN HTML COMMANDS)


Its useful to know some html commands (tag), in fact in every textbox of the Webmatic editor it is possible to insert either the text that HTML instructions.

You can see here some of the more used HTML commands (The HTML commands are case insensitive):


<br>
: When <br> is inserted, the text goes to head

Example:
If you write "example text" you will get:

example text

If you write "example<br>text" you will get:

example
text


<b>...</b>, <i>...</i>, <u>...</u>
: The text, that replace the dots, will appear in bold, italic and underline

Example:
If you write "example <b>html formatted <u>text</u></b>" you will get:

example html formatted text


<hr>
: Create a horizontal line

Example:
If you write "example<hr>text" you will get:

example


text


<a href=...>...</a> :Create a link to a webpage, you must replace the first dots with the webpage URL (example "http://www.mytestpage.com") and you must replace the second dots with the link text (that is the text will appear in the page).


<img src=...> : Insert a picture in the page (replace the dots with the path of the picture to insert). (example <img src="pic/icon/video.gif">)
.


<font color=#rrggbb>...</font> : Change the color of the text that replace the dots, in the color specified by color

For example if you write: "<font color=#ff0000>Red color</font><font color=#00ff00>Green color</font><font color=#0000ff>Blue color</font>" you will get:

Red colorGreen colorBlue color

Colors examples:
#ff00ff #ffff00 #00ffff #777777 #1177bb #000000 #ff9900