28Jul/090
How to put a Google search box on your website
Here is how you can put a Google search box on your website.
Put the code below within your site's source code. If you dont know how to implement this code into your site, please goto how to implement the code to your website
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <!-- this script is from www.manycodes.com --> <!-- Search Google --> <center> <TABLE bgcolor= "#FFFFFF" ><tr><td> <INPUT TYPE=text name=q size= 31 maxlength= 255 value= "" > <INPUT TYPE=hidden name=hl value= "en" > <INPUT type=submit name=btnG VALUE= "Google Search" > </td></tr></TABLE> </FORM> </center> <!-- Search Google --> <font face= "Tahoma" ><a target= "_blank" href= "http://www.manycodes.com/" ><span style= "font-size: 8pt; text-decoration: none" >JavaScript Free Code</span></a></font> |