El HTML <input type=”url”> se usa para definir un campo que ingresó una URL . Este valor de entrada se valida automáticamente antes de enviar el formulario.
Sintaxis:
<input type="url">
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title> HTML Input Type URL </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="URL"> </h2> <form> <input type="url" placeholder="search a URL"> <br> <br> </form> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome 1 y superior
- Firefox
- Borde 12 y superior
- Ópera 11 y superior
- Internet Explorer 10 y superior
- safari de manzana
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA