HTML5 Tel Input Type for telephone number - HTML CSS HTML

HTML CSS examples for HTML:Form Input

Description

HTML5 Tel Input Type for telephone number

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>HTML5 Tel Input Type</title> 
 </head> <!--from   ww w.ja v  a  2s .c  om-->
 <body> 
  <form> 
   <label> Telephone Number: <input type="tel" name="mytelephone" required> </label> 
  </form>   
 </body>
</html>

Related Tutorials