Submit Button

Previous Topic  Next Topic

Every web form should contain a “Submit” button, a visitor can click to submit the form. HTML code for the button:

 

<form type="SUBMIT" value="submit">

 

You can create a button that says something different than “Submit” by changing the “value” attribute. Example:

 

<input type="SUBMIT" value="Sign-up">

 

It is customary to place the button under the form’s input fields (see Input Fields). Example:

 

<form action="Submission action" method="POST"> 

       HTML for the text, radio buttons, etc. 

       <input type="SUBMIT" value="Sign-up">
</form>

 



   Continue reading...