How to display an image on a form

How to display an image on a form

To display an image, such as a company logo, on a form, you can utilize the Add Notes field. Follow these steps to configure any form in your application to include an image:
  1. Navigate to the form builder of the form and include an Add Notes field.

  2. Click on the content section in the Field Properties of the notes field to edit the content.

  3. A rich text editor pop-up will be shown. Clear the default content and click the Edit HTML icon ().

  4. Add an <img> tag to the HTML with the public image URL as shown below.
  1. <div>
  2. <img src="<Public_image_URL>" width="150" height="70">
  3. <br>
  4. </div>
Where,
"<Public_image_URL>"
Is the TEXT that represents the URL of the public image that needs to be displayed in the form.

See How it Works


  1. Understand add notes field