Static website contact form without backend
Static sites (GitHub Pages, Netlify, Vercel, or plain HTML) don't need a server to handle form submissions. Use MyFormConnect as the form backend: one endpoint, no backend required.
Endpoint: POST https://myformconnect.io/f/YOUR_FORM_ID
Set your form's action to that URL (with your form ID) and method="POST". Submissions are stored in MyFormConnect and you can receive email notifications.
Example
<form action="https://myformconnect.io/f/YOUR_FORM_ID" method="POST">
<input type="text" name="name" placeholder="Your name" required>
<input type="email" name="email" placeholder="Email" required>
<textarea name="message" placeholder="Your message"></textarea>
<button type="submit">Send</button>
</form>
See llms.txt for a machine-friendly reference and 100 copy-paste forms for more form types.