How to create: Email field

Learn how to create an email field in HTML.

Email field

Please enter your email:

You can use type="email" Attributes to create an email field:

Example

<label for="email">Enter your email:</label>
<input type="email" id="email" name="email">

Try it yourself

input type="email" Field used to define an email address.

Input values will be automatically validated to ensure that it is a correctly formatted email address.

Related pages

Tutorial:HTML form