Static Site Forms

This is a static site created on netlify using the serverless forms service fabform.io

netlify static site form (This Demo)

Fabform is a serverless forms SaaS that allows you to create static site forms. And collect form submissions from static sites with ease.

It reduces form spam and integrates with 3rd party services like Google Sheets.

In this quick mini tutorial I will show you how to create a static site form.

And when I say a short tutorial I mean a short tutorial. This is all the code you need to create a contact form on a static site. Just signup for an account at fabform.io . There is a free plan available.

Create a Form Endpoint and set the form action method to your new form endpoint.

And voila! You have a fulling working static site form working.

Works with netlify or any other static site hosting services like Github Pages and others.

<form action="https://fabform.io/f/{form-id}" method="post">

<label for="email">Your Email</label>

<input name="email" type="email">

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

</form>

Static Site Forms

Github Respository

Create A Static Website With Contact Form On GitHub Pages