HTML Old School

Submit buttons

To submit form use the following buttons:

 

1. SUBMIT

<input type="submit" value="Send">

 

 

2. RESET

To reset the form use:

<input type="reset" value="Reset the form">

 

3. BUTTON

<button>click me !!!</button>

Submit form with button element: 07button.html

 

 

4. IMAGE

<input type="image" src="./btn.gif">

Image as submit button: 07image_submit.html