Create HTML forms that store the responses in Google Sheets.

Like the functionality of Google Forms but miss customizability? Form2Sheet is the solution for you.

Perfect for contact forms and surveys. No code or back-end needed on your static website.

Italian Trulli

It's really easy to get started!

Here's how you can get a "Custom Google Form"...

1. CHOOSE A PLAN

You can choose between the Free and Premium plan.

2. CREATE YOUR ACCOUNT

Provide your email and give a name to your Spreadsheet.

3. CHECK YOUR EMAIL

You'll receive the info you need to start collecting responses.

4. BUILD YOUR CUSTOM GOOGLE FORM

Build the HTML form using the desired fields and style on a text editor.
See the example bellow.

5. PUBLISH IT

Upload your HTML file so others can see it.

6. ALL SET!

You're ready to start collecting responses.

Here is a "Contact Form" example

You can add a simple serverless contact form to your static HTML website


Touch the green text to see the tips
<form action="" method="">
  <label for="name">Name:</label>
  <input type="text" name="">
  <label for="email">E-mail:</label>
  <input type="email" name="">
  <label for="message">Message:</label>
  <textarea type="text" name=""></textarea>
  <input type="submit" value="Submit"></input>
</form>