HTML Input Control Elements Submit

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

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

A submit input creates a button which submits the form it is inside when clicked.

You can also use the <button> element if you require a submit button that can be more easily styled or contain other elements:

<button type="submit">
  <img src="submit-icon.jpg" /> Submit
</button>


Got any HTML Question?