Ejemplo de uso del método GET en el atributo method de un formulario HTML
Ejemplo explicado en el apartado "Formularios" del tutorial de HTML.
"metodo-get-en-atributo-method.html"
<!DOCTYPE html>
<html lang="es-ES">
<head>
<meta charset="utf-8">
<title>Ejemplo método GET en el atributo method</title>
</head>
<body>
<form action="http://www.google.com/search" method="get">
Google:
<input type="search" name="q">
<input type="submit" value="Buscar">
</form>
</body>
</html>