Contact Forms & Surveys
Replaces: Contact Form 7, WPForms, Gravity Forms, WS Form, Ninja Forms
Replace Contact Form 7, WPForms, and Gravity Forms with simple HTML forms and embeddable SaaS tools.
Replacements
| WP Plugin | Ink Replacement | How to Embed | Free? | Ease |
|---|---|---|---|---|
| Contact Form 7 | Formspree | HTML form with action URL -- no JS needed | Yes | Easy |
| WPForms | Tally.so | Embed iframe or popup via script tag | Yes | Easy |
| Gravity Forms | Typeform | Embed script or full-page redirect | Paid | Easy |
| WS Form | HubSpot Forms | Script tag -- also adds free CRM | Yes | Medium |
| Ninja Forms | Jotform | Iframe embed code | Limited | Easy |
Recommended: Formspree + Tally
Formspree handles simple contact forms with zero JavaScript -- plain HTML with an action attribute. Tally is the best free option for multi-step forms. Both work inside markdown via raw HTML blocks.
Ink supports raw HTML blocks in markdown, so any embed snippet drops in without modification.
<!-- Simple Formspree contact form -->
<form action="https://formspree.io/f/yourcode" method="POST">
<input type="email" name="email" placeholder="Your email">
<textarea name="message"></textarea>
<button type="submit">Send</button>
</form>