forms.app
Drag-and-drop contact layout, embed on any page, honeypot and reCAPTCHA options, email notifications, and unlimited submissions on the free plan.
// contact forms
A contact form is still the highest-intent conversion path on most business websites. These HTML contact form builders let you ship one without PHP, Node, or an inbox exposed in plain text.
Drag-and-drop contact layout, embed on any page, honeypot and reCAPTCHA options, email notifications, and unlimited submissions on the free plan.
Own your markup completely. Ideal for developer portfolios and documentation sites with a minimal contact block.
When contact forms need résumés, screenshots, or brief attachments — Basin handles multipart POST from your HTML.
Pre-built contact templates and embed code. Watch the 100 submission/month free cap on busy landing pages.
Keep HTML contact forms short. Every extra required field costs completions.
type="email" and autocomplete="email"maxlengthMinimal accessible contact form
<form action="https://formspree.io/f/xyz" method="POST">
<label>Your name
<input name="name" required autocomplete="name" />
</label>
<label>Email
<input type="email" name="email" required autocomplete="email" />
</label>
<label>How can we help?
<textarea name="message" required rows="5"></textarea>
</label>
<button type="submit">Send message</button>
</form>
Public contact endpoints attract bots. Layer these defenses:
Submissions are useless if they land in spam. Verify notification email domains, add SPF/DKIM for custom sender addresses when your provider allows it, and test from a real device before launch.