Html Menu
Previous Top Next

graphic

Html shortcuts, dialogs and editors to aid in creating a html document. Most shortcuts will insert selected text between the start and stop tag. Selecting e.g. Bold will insert the tags <b></b> and with a selected text <b> selected text </b>. The best way to learn how to use these menu items is to try them out. Most of them basically does the same thing - inserts a start and stop tag. Some tags will have an attribute e.g. the menu item Font (size +1) will insert <font size="+1"></font>.

Strip tags
Remove tags from the selected html text.


Add line breaks
Add a <br /> tag at the end of each selected line.


Unordered list
If you select one or several lines, list tags will be inserted.

E.g.

We select the lines below,

Line 1
Line 2
Line 3

Execute the menu command and we get

<ul>
  <li>Line 1</li>
  <li>Line 2</li>
  <li>Line 3</li>
</ul>


Ordered list
If you select one or several lines, list tags will be inserted.

E.g.

We select the lines below,

Line 1
Line 2
Line 3

Execute the menu command and we get

<ol>
  <li>Line 1</li>
  <li>Line 2</li>
  <li>Line 3</li>
</ol>


Conversion

Html to Text
Convert the html code to plain text.

Text to Html (syntax)
Convert a source code file, or plain text file, to (x)Html code. The syntax highlighting is preserved.

Text to Html (B/W)
Convert a source or text file to (x)Html. No html file will not contain any syntax highlighting.


CSS Editor...
Open a style sheet editor (TopStyle Lite) if installed.

Lorem Ipsum...
Open the Lorem Ipsum generator. Use this to fill your web document with some text to check your layout. The lorem ipsum generator will generate some nonsense text and paste it at the current text cursor position.