HTML | <tipo de entrada=”buscar”>

El HTML <input type=”search”> se usa para definir un campo de texto que ingresó una string de búsqueda

Sintaxis: 

<input type="search">

Ejemplo: 

HTML

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML Input Type Search
    </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="search">
</h2>
    <form>
        Type a URL:
        <input type="search">
        <br>
        <br>
    </form>
</body>
 
</html>

Producción:

  

Navegadores compatibles:

  • Google Chrome 5 y superior
  • Firefox 4.0 y superior
  • Borde 12 y superior
  • Ópera 10.6 y superior
  • Internet Explorer 10 y superior
  • Apple Safari 5 y superior

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *