El HTML <input type=”time”> se utiliza para especificar el campo de control de tiempo de entrada.
Sintaxis:
<input type="time">
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title> HTML input type time </title> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>HTML <input type="time"></h2> <form action="#"> Input Time: <input type="time" name="time"> <input type="submit" value="Submit"> </form> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con <input type=”time”> se enumeran a continuación:
- Google Chrome 20.0 y superior
- Borde 12.0 y superior
- Firefox 57.0 y superior
- Ópera 10 y superior
- Safari 14.1 y superior
- Internet Explorer no es compatible
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA