|
|
HTML Forms - Submit
Submit Button
Submit buttons are everywhere on the web. They are the buttons you use to trigger the action of the form they reside within, and they are very easy to create! As a type of
<input /> tag, you just add them to your form element:<input type="submit" value="Submit" /><br /> <input type="submit" value="Go" /><br /> <input type="submit" value="Process Form" /><br />
Notice how we used the
value="" attribute to set the text within the button. The buttons don't do anything when you click them as they are not contained within the form.Page Responses
Currently there have been no responses to this page...
If you have anything to contribute to this tutorial, found a bug, or know a better way of achieving the same goal, please leave your response below.
|