how to use submit button in html code example
Example 1: html submit button
<input type="submit" value="Submit">
Example 2: html submit button
<input type="submit">
Example 3: how to use form on submit in html
<form onsubmit="myFunction()">
Enter name: <input type="text">
<input type="submit">
</form>