Links
Comment on page

Paragraph

Displays headings/paragraphs depending on the type of property.
You may add text paragraphs to your form, which is useful for instructions or comments. Paragraph supports the following properties:
Property
Description
Allowed values
type
The type of paragraph to display
  • normal
  • bold
  • h1
  • h2
  • h3
  • h4

Paragraph type normal

Displays a paragraph similar to the HTML <p> tag.

Paragraph type bold

Displays bold text, similar to the HTML <b> or <strong> tags.

Paragraph type h1 to h4

Displays heading text according to the heading set. Similar to the HTML <h1> to <h4> tags.

Examples

<form>
<paragraph type="normal">NORMAL</paragraph>
<paragraph type="bold">BOLD</paragraph>
<paragraph type="h1">H1</paragraph>
<paragraph type="h2">H2</paragraph>
<paragraph type="h3">H3</paragraph>
<paragraph type="h4">H4</paragraph>
</form>