weird thing I'm trying to do

beekeeper

New Member
A while ago i took the google homepage and redesigned it to my liking. I added more links, dark background and such...
So what i did also was to take the code that made it search google from where it was on it's server and changed it so it would search www.google.com when i entered soemthing. So basically i had my own google page when i started firefox.
Ok, so now I lost it, my HD crapped out and i want to rebuild that but it looks like there is some exotic script and i can't figure out how i had it look up google.
Any one know how i could make a form use googles search?

Thanks in advance :)
 

Chroder

New Member
HTML:
<form action="http://www.google.com/search" method="get" name="f">
<input type="hidden" name="hl" value="en" />
<input type="text" name="q" value="" />
<input type="submit" name="BtnG" value="Search" />
</form>
That should do it.
 
Top