Help
|
Short instruction for Using HTML Syntax
HTML Syntax Overview 
Word wrap
Command | View | effects a word wrap<br />like Shift + ENTER key | effects a word wrap like Shift + ENTER key |

Links and references
Command | View | <a href="www.yourdomain.tld/index.html">Your Site</a> | Your Site |

View links and references in a new window
Command | View | <a href="www.yourdomain.tld/index.html" target="_blank">Your Site</a> | Your Site |

Bold / italic style
Command | View | <b>Word</b> or <strong>Word</strong> | Word | <i>Word</i> or <em>Word</em> | Word | <b><i>Word</i></b> or <strong><em>Word</em></strong> | Word |

Change font size
Command | View
| <font size="+1">Word</font> | Word | <font size="-1">Word</font> | Word | <font size="+2">Word</font> | Word |

Change text color
Command | View | <font size="2" color="red">Word</font> | Word | <font size="2" color="green">Word</font> | Word | <font size="2" color="yellow">Word</font> | Word |

Insert graphics

View image in a new window
Command | View | <a href="http://www.domaintechnik.com/packages.png" target="_blank">Image</a> | Image |

Combination of several commands: link, font size, text style
Command | View | <a href="http://www.domaintechnik.com/packages.png" target="_blank"><font size="+1"><b>Image</b></font></a> | Image |

|