Test your knowledge on HTML Forms II Quiz: <button> vs <input type="submit"> and Modern Form Validation. This quiz contains 10 questions.
Level: Beginner
Topic: forms-ii
Default submission behavior
In an HTML form, which element (as written) will submit the form by default when clicked?
```html
<form action="/signup" method="post">
<button>Sign up</button>
</form>
```