28Jul/090
How to put a msn search box on your website
Here is how you can put a msn 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 17 18 19 20 21 22 23 | <!-- this script is from www.manycodes.com --> <body> <table BORDER= "0" WIDTH= "222" HEIGHT= "18" > <tr> <td WIDTH= "214" HEIGHT= "10" > <p><font FACE= "arial" SIZE= "2" ><strong>Search <font COLOR= "#808080" >the Web for :</font></strong></font><br> <input TYPE= "text" ID= "q" SIZE= "18" MAXLENGTH= "251" NAME= "q" VCARD_NAME= "SearchText" ><input TYPE= "submit" VALUE= "Search" NAME= "B1" ><input TYPE= "hidden" NAME= "FORM" VALUE= "FRNT" ><input TYPE= "hidden" NAME= "un" VALUE= "doc" ><input TYPE= "hidden" NAME= "v" VALUE= "1" ></p> </form> </td> </tr> <tr> <td WIDTH= "214" HEIGHT= "21" VALIGN= "bottom" > <p ALIGN= "center" ><font SIZE= "1" FACE= "arial" > Advanced Search</a></font></td> </tr> </table> <p> </p> </body> <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> |