Horje
email regex html pattern Code Example
email regex html pattern
<input name="email" type="email" pattern="[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{1,63}$" class="form-control" placeholder="Email*" id="email" required="">
pattern for email id in html
<form action="example.php">
  <label for="email">Email:</label>
  <input type="email" id="email" name="email"
  pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$"
  title="Please Enter Valid Email Id">
  <input type="submit">
</form>
html textbox pattern mobile number
<input type="text" name="Phone Number" pattern="[7-9]{1}[0-9]{9}" 
       title="Phone number with 7-9 and remaing 9 digit with 0-9">
html email regex
var email = /^[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,4}$/;




Html

Related
Open markdown link in new tab Code Example Open markdown link in new tab Code Example
accept only image input file Code Example accept only image input file Code Example
default html template Code Example default html template Code Example
jquery ui cdn Code Example jquery ui cdn Code Example
html template start Code Example html template start Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
22