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 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">
phone number patter in html5
<!-- html form tag -->
<form>
<label>Phone Number Format (xxxxxxxxx)</label>
<!-- html input type=tel for phone number which contain a pattern -->
<input type="tel"
name="phone_number"
id="phone_number"
pattern="^\d{10}$"
required="required"
/>
<!-- html input type=submit for submit a form -->
<input type="submit" />
</form>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us