How to use telephone input type in HTML?


The telephone input type is used in HTML using the <input type="tel">. Using this, allow the users to add telephone number.

Note − The input type tel is only supported in Safari.

Example

You can try to run the following code to learn how to use input type tel to allow user input in the form of a telephone number −

<!DOCTYPE html>
<html>
   <head>
      <title>HTML input search</title>
   </head>

   <body>
      <form action = "" method = "get">
         Details:<br><br>
         Student Name<br><input type = "name" name = "sname"><br>
         Student Telephone<br> <input type = "tel" name = "telephone"><br>
         <input type = "submit" value = "Submit">
      </form>
   </body>
</html>

Monica Mona
Monica Mona

Student of life, and a lifelong learner

Updated on: 15-Jun-2020

419 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements