Generator

Survey Form Generator

Build a multi-question HTML survey with text, textarea, radio, checkbox, select, and 5-star rating questions.

Questions

Survey HTML
<form action="/api/survey" method="POST">
  <fieldset><legend>How satisfied are you?</legend><label><input type="radio" name="q1" value="1" />1</label><label><input type="radio" name="q1" value="2" />2</label><label><input type="radio" name="q1" value="3" />3</label><label><input type="radio" name="q1" value="4" />4</label><label><input type="radio" name="q1" value="5" />5</label></fieldset>
  <label>What can we improve?<textarea name="q2" rows="3"></textarea></label>
  <button type="submit">Submit</button>
</form>