Contact Form for Webflow

Use this Contact Form code to quickly get a contact form on your Webflow site.

Contact Form for Webflow

Contact Form Code for Webflow

Webflow is a design tool for the web. It allows you to create websites without code and without any hassle. Use this example code to get a contact form on your Webflow site after adding your own FormBold API.

<form id="form" action="https://formbold.com/s/unique_form_id" method="post">
  <div>
    <input
      type="email"
      name="email"
      id="email"
      placeholder="Your Email"
      required
    />
  </div>

  <div>
    <input
      type="text"
      name="subject"
      id="subject"
      placeholder="Your subject"
      required
    />
  </div>

  <div>
    <textarea
      name="message"
      id="message"
      rows="6"
      placeholder="Your Message"
      required
    ></textarea>
  </div>

  <div>
    <button type="submit">Submit</button>
  </div>
</form>

Create a Form to Connect Apps