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 |
|
Displays a paragraph similar to the HTML <p> tag.
Displays bold text, similar to the HTML <b> or <strong> tags.
Displays heading text according to the heading set. Similar to the HTML <h1> to <h4> tags.
<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>
Last modified 7d ago