El HTML <input type=”tel”> se utiliza para definir un campo que ingresa un número de teléfono de usuario .
Sintaxis:
<input type="tel">
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title> HTML Input Type Tel </title> </head> <style> #Geek_p { font-size: 30px; color: green; } </style> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>HTML <Input Type="tel"> </h2> <form> Phone No.: <input type="tel"> <br> <br> </form> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome 3 y superior
- Borde 12 y superior
- Internet Explorer 10 y superior
- Ópera 11 y superior
- Apple Safari 4 y superior
- Firefox
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA