The HTML element enable native HTML tags to be inserted into forms, providing the flexibility to format forms such as inserting images using <IMG> tag, links using <A> tags and numerous of other HTML tags. HTML tags need to properly closed in order for it to be a valid element. A HTML element can contain as many HTML tags as required. The only restriction is that for every HTML tag in the HTML element, a closing HTML tag is also required. In other words, HTML included in the HTML element must conform the the XHTML format.
For example: < BR> is an invalid HTML tag
< BR> < /BR> is a valid HTML tag
< BR /> is a valid HTML tag
The HTML element has the following properties:
| Property Name |
Description |
| ID |
Optional ID describing the HTML element. Only used for describing the field. |
| Value |
This is a required property used for storing HTML tags. |
| Class |
Optional name of the CSS style class. |
| Style |
Optional style that can be specified directly. |

