Overview
The HTML button from your Options menu allows you to add styling to your form element as well as include additional content.
Please Note: While it is possible to use custom code such as HTML in your forms, our Support Team does not support writing or editing custom code.
Common HTML Tags
<h1> - <h6> | Heading |
<p> | Paragraph |
<i> | Italic |
<b> | Bold |
<a> | Anchor |
<ul> & <li> | Unordered List & List Item |
<blockquote> | Blockquote |
<hr> | Horizontal Rule |
<img> | Image |
<div> | Division |
Disallowed HTML Elements
Some elements cannot be used in the Form Builder due to security or functionality issues. The disallowed HTML elements are:
- applet
- base
- basefont
- command
- embed
- frame
- frameset
- iframe
- keygen
- link
- meta
- noframes
- noscript
- object
- onclick
- param
- script
- title
Examples
<b>This tag will bold the text within it.</b>
Create a bulleted list
<ul>
<li>Apples</li>
<li>Bananas</li>
<li>Pears</li>
<li>Oranges</li>
<li>Grapes</li>
</ul>
Create a horizontal line
<hr>
Create a hyperlink
<a href="http://www.google.com">Link to Google</a>