2. HTML Form Tag

2.5. Submit


          Submit is used to create a clickable button but instead of calling a script when the user clicks on it, it triggers the action attribute to execute. Remember that the action attribute causes the page to submit all values typed inside the <form> tag to be submitted to the server or a specified webpage for processing.

 <form>

 <input type = "submit" value = "Submit form">

</form>

 

Output: