![[ UL ]](pic/ul_button.gif) |
Unsorted list: By pushing this button Globe inserts the <UL></UL> elements into the text
at the position of the cursor and puts it between them. You can create a simple enumeration by means of a <LI> element. If you want to set additional properties for it put the cursor before the HTML starting element > and hit a space.
Globe will help you to select parameters. You can read about this function in more detail in the tutorial section.
Code pattern:
<UL>
<LI> First element of the list
<LI> Second element of the list
<LI> Third element of the list
</UL>
Outcome of the code pattern:
- First element of the list
- Second element of the list
- Third element of the list
|
![[ OL ]](pic/ol_button.gif) |
Ordered list: By pushing this button Globe inserts the <OL></OL> elements into the text
at the position of the cursor and puts it between them. You can create an ordered enumeration by means of a <LI> element. If you want to set additional properties for it put the cursor before the HTML starting element > and hit a space.
Globe will help you to select parameters. You can read about this function in more detail in the tutorial section.
Code pattern:
<OL>
<LI> First element of the list
<LI> Second element of the list
<LI> Third element of the list
</OL>
Outcome of the code pattern:
- First element of the list
- Second element of the list
- Third element of the list
|
![[ LI ]](pic/li_button.gif) |
List element: By pushing this button Globe inserts the <LI> element into the text
at the position of the cursor. It indicates one element of a list. If you want to set additional properties for it put the cursor before the HTML starting element > and hit a space.
Globe will help you to select parameters. You can read about this function in more detail in the tutorial section.
|
![[ DL ]](pic/dl_button.gif) |
Definition list: By pushing this button Globe inserts the <DL></DL> elements into the text
at the position of the cursor and puts it between them. You can create definitions by means of it. Additional elements belonging to it are <DT> and <DD>.
Code pattern:
<DL>
<DT>&apmp;lt;PRE> <DD> Definition of a formatted text in HTML code.
<DT></PRE> <DD> HTML element of closing a formatted text.
</DL>
Outcome of the code pattern:
- <PRE>
- Definition of a formatted text in HTML code.
- </PRE>
- HTML element of closing a formatted text.
|
![[ DT ]](pic/dt_button.gif) |
Definition tag: By pushing this button Globe inserts the <DT> element into the text.
See at <DL> element. It has no additional option.
|
![[ DD ]](pic/dd_button.gif) |
Definition description: By pushing this button Globe inserts the <DD> element into the text.
See at <DL> element. It has no additional option.
|
![[ MENU ]](pic/menu_button.gif) |
Menu: By pushing this button Globe inserts the <MENU></MENU> element into the text
at the position of the cursor and puts it between them. You can create a simple enumeration by means of a <LI> element. Its usage is the same as that of a <UL> element. Since 4.0 HTML
UL element has been used. If you want to set its properties put the cursor before the HTML starting element > and hit a space.
Globe will help you to select parameters. You can read about this function in more detail in the tutorial section.
Code pattern:
<MENU>
<LI> First element of the list
<LI> Second element of the list
<LI> Third element of the list
</MENU>
Outcome of the code pattern:
|