html forms submit code example
Example 1: forms in html
<html>
<form action= "your site" method = "post/get">
</form>
</html>
Example 2: add submit to input
<!-- put this line of code inside of your input -->
onchange="this.form.submit()
<!-- EXAMPLE -->
<input type="checkbox" onchange="this.form.submit()">