Forms
Email field 
- Class name:
- Version: 1.0
This is a simple input pattern that doesn't require a CSS class. It uses the HTML5 input type "email" and the attribute pattern
to define the entry pattern expected for email addresses.
HTML5 Plain Code
-
<p><label for="Email">E-mail:</label>
-
<input type="email" id="Email" name="Email"
-
pattern="[a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4}"
-
size="40"
-
title="A valid email must not contain spaces or special characters" />
-
</p>
IE Backward Compatibility
In order to correct display bugs for Internet Explorer versions prior to 9, your html pages need to call the following file by Conditional Comments: