HTML

<< Click to Display Table of Contents >>

Navigation:  IWML > Tags > Controls >

HTML

The HTML control allows embedding raw HTML content into an IWML layout. It is especially useful for integrating third-party libraries (like Bootstrap) or inserting custom HTML elements that are not otherwise wrapped by native IWML controls.

 

Syntax

 

HTML[:Name]

 Element: [tagName]

 HTML:

   [HTML content lines...]

 ]

 

Name — optional control identifier.

Element — the tag name of the HTML element (default: span).

HTML — raw HTML markup to insert.

 

The Element property defines the HTML tag to be created (e.g., div, span, section, etc.), and the HTML property contains the actual HTML markup to render inside that element.

 

Try It

 

HTML:MyDiv

 Element: div

 HTML:

   <strong>Hello</strong>, <em>world</em>!