# Surveys

![](https://506014553-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MDC2UBVsxTCFgqgM3sK%2F-MDT682MkTqR56-DIhlo%2F-MDT6sEYfpjy7CGezzUH%2Fopt-in.png?alt=media\&token=1fba9ac0-267f-4119-9efd-79f1bcfaa3df)

{% hint style="info" %}
*All these guides require that you have a* [*free Sheet Monkey account.* ](https://sheetmonkey.io)*If you haven't registered your account, please do that before continuing.*
{% endhint %}

When you need to put a simple survey on your site but don't want to use a third party tool, Sheet Monkey is great choice. Building a survey with Sheet Monkey only requires a spreadsheet and HTML and we've even made those for you to get you started.&#x20;

Download Sheet: <https://docs.google.com/spreadsheets/d/1BAswxgIfTAJVz4oEANH-QdnBC4xRdjYSCCpFvkZjklE/edit?usp=sharing>

<div align="left"><img src="https://506014553-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MDC2UBVsxTCFgqgM3sK%2F-MDVu4i2WNwJeVHfEDWX%2F-MDVuB7E8cnhh3qRyu2a%2Fimage.png?alt=media&#x26;token=03e89e0c-3a30-41bf-95a5-a50bd12f0781" alt=""></div>

Sample HTML:

```markup
<form  action="<your-form-action>" method="post">
  <label>Your Name: <input type="text" name="Name" required /></label>
  <label>Your Email: <input type="email" name="Email" required /></label>
  <label>Favorite Color: <select name="Response 1"><option>Red</option><option>Green</option><option>Blue</option></select></label>
  <label>Do you like Ice Cream?: <input type="radio" name="Response 2" value="Yes" /> Yes <input type="radio" name="Response 2" value="No" /> No</label>
  <label>Any other comments: <textarea name="Response 3" placeholder="Leave your thoughts here"></textarea></label>
  <input type="hidden" name="Created" value="x-sheetmonkey-current-date-time" />
  <input type="submit" value="Save Response" />
</form>
```

{% hint style="info" %}
Remember: This HTML and this sheet are only suggestions to help get you started. Modify them as much as you want.
{% endhint %}
