Do you support forms?

Why Forms Don't Work by Default

Tiny Host is a static site hosting service, which means it only serves HTML, CSS, and JavaScript files. Static sites cannot process form submissions on their own because they don't have a backend server to handle the data.


Solution: Use FormSubmit.co

The good news is you can easily add working forms to your Tiny Host site using FormSubmit.co - a free service that handles form submissions for you.


How to Add a Form

Simply add this code snippet to your HTML page:

<form action="https://formsubmit.co/your@email.com" method="POST">
<label for="name">Name:</label>
<input type="text" name="name" id="name" required>

<label for="email">Email:</label>
<input type="email" name="email" id="email" required>

<label for="message">Message:</label>
<textarea name="message" id="message" required></textarea>

<button type="submit">Send</button>
</form>


Important: Replace your@email.com with your actual email address where you want to receive form submissions.


How It Works


  1. Replace your@email.com in the form action with your email
  2. The first time someone submits the form, FormSubmit will send you a confirmation email
  3. Click the confirmation link to activate the form
  4. All future submissions will be sent directly to your inbox


Additional Features

FormSubmit.co offers optional features like:

  • Custom thank you pages
  • Email templates
  • CAPTCHA protection
  • CC/BCC to multiple emails

Visit formsubmit.co for full documentation and advanced configuration options.

Updated on: 30/10/2025

Was this article helpful?

Share your feedback

Cancel

Thank you!