HTML toolbar

HTML toolbar contains buttons that can lighten your work with HTML code blocks.

Toolbar object

Label

Description

Bold

Click this button to mark the selected text out in thick print.

Italic

Click this button to mark the selected text out in italics.

Underline

Click this button to underline the selected text.

Font

Click this button to insert <font></font> tag into the code.

Color

Click this button to open the color-picker dialog that lets you find the exact color you want.

Non-breaking space

Click this button to insert nonbreaking space into the code.

Break

Click this button to insert <br> tag into the code.

Paragraph

Click this button to insert <p> tag into the code.

Heading

Click this button to insert one of <h1></h1> ... <h5></h5> tags into the code

Image

Click this button to open a dialog window, where you can select an image to be inserted, and <img src="[image's full name]"> tag into the code.

Anchor

Click this button to insert <a href=""> tag into the code.

HR

Click this button to insert <hr> tag into the code.

Comment

Click this button to comment on the selected fragment of code.

Symbol

Click this button to open the window with a list of special characters that could be inserted; After the symbol selected, it inserts into the code.

Center

Click this button to insert <center></center> tag into the code.

Div/span

Click this button to select and insert the following tag:

<div>  </div>

or

<span>  </span>

combination of tags into the code

Block quotation

Click this button to insert <blockquote></blockquote> tag into the code.

Preformat

Click this button to insert <pre></pre> tag into the code.

List

Click this button to insert one of the following:

<ul> (<ol>, <dl>)

 <li> (<li>, <dt>)

 <li> (<li>, <dd>)

</ul> (</ol>, </dl>) combinations of tags into the code.

Table

Click this button to insert the following:

<table>

  <tr>

   <td>

   </td>

  </tr>

</table>

combination of tags into the code.

Script

Click this button to insert the following:

<script language="javascript">

<!--

//-->

</script>

tag into the code.

Applet

Click this button to insert the following <applet code=""> </applet> tag into the code.

Form

Click this button to insert <form></form> tag into the code.

Form control

Click this button to insert <INPUT TYPE="..."> tag into the code.

Exception: for the List Box subitem insert <select></select> tag

Image map

Click this button to insert the following code:

<map>

  <area shape="" href="">

</map>

Frame

Click this button to insert:

<frameset>

  <frame src="" name="" />

  <frame src="" name="" />

</frameset>

combination of tags into the code.