Submit form button
The input tag with the type attribute set to submit creates a submit button for an HTML form, or simply as a design element (in which case it is often nested within a link).
Example
Let's create a form submit button. Click on it and make sure the form is actually submitted:
<form>
<input type="text" value="data">
<input type="submit" value=""Click me">
</form>
: