Como buscar en Google usando un campo de texto
AUTOR PREGUNTA #1
<!DOCTYPE html> <html> <body> <form name="input" action="index.html" method="get"> Buscar:<input type="text" name="user"> <input type="submit" value="Submit"> </form> </body> </html>
Alguien me puede ayudar? Gracias de antemano
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
#3
<!doctype html> <meta charset=utf-8> <title>Busqueda Google</title> <form action="http://www.google.com/search"> <label for=q>Palabra clave:</label> <input type=text name=q size="32" id=q> <input type="hidden" name="ie" value="utf-8"> <input type="hidden" name="oe" value="utf-8"> <input type="submit" value="Buscar"> </form>