<input type="submit" value="Submit">
A submit input creates a button which submits the form it is inside when clicked.
You can also use the <button>
element if you require a submit button that can be more easily styled or contain other elements:
<button type="submit">
<img src="submit-icon.jpg" /> Submit
</button>