>>> 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>
: The text, that replace the dots, will appear in bold
Example:
If you write "example <B>text</B>" you will get:
example 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> : Chenge 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