HTML Input Control Elements Email

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 Insert
> Step 2: And Like the video. BONUS: You can also share it!

Example

5

The <input type="email"> is used for input fields that should contain an e-mail address.

<form>
  <label>E-mail: <label>
  <input type="email" name="email">
</form>

E-mail address can be automatically validated when submitted depending on browser support.



Got any HTML Question?