# Submit HTML Form in Different Tab
# Submit in Different Tab
If you would like to redirect your submitters to another after they submit the forms, set the target
attribute to _blank
, then the form will be submitted in a new tab.
<form action="https://getform.io/f/{your-form-endpoint}" target="_blank">
<input type="email" name="email" />
<button type="submit">Subscribe</button>
</form>