HTML CSS examples for HTML:Form Input
HTML5 Tel Input Type for telephone number
<!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>