How to create: Email field
- Previous page Color picker
- Next page Tooltip
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">
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
- Previous page Color picker
- Next page Tooltip