Taildove Logo
Taildove
Embedding

HTML snippet

The HTML snippet is a plain HTML form (no JavaScript). Copy it from Embed → HTML snippet and paste it anywhere in your HTML.

What it includes

  • Pre-styled form fields matching your form configuration
  • A standard <form action=".../submit" method="post"> POST to Taildove
  • A honeypot field to reduce spam submissions

Generated code structure

<form
  id="td-form-TOKEN"
  action="https://app.taildove.com/f/TOKEN/submit"
  method="post"
  style="font-family:...;max-width:480px;"
>
  <!-- Your fields here -->
  <input type="email" name="email" required ... />
  <button type="submit" style="background:#6366f1;...">Submit</button>
</form>

Customization

The generated snippet uses inline styles that match your branding settings. If you want to override styles, add a <style> block above the form:

<style>
  #td-form-TOKEN input { border-radius: 4px; }
  #td-form-TOKEN button { background: #your-color !important; }
</style>

Limitations

  • No auto-resize (it's inline HTML, not an iframe)
  • The form does not update if you edit the form in Taildove — you'll need to copy a new snippet
  • After submission, the browser navigates to Taildove’s response (success message or redirect)