How to Add Simple Google/Bing Search Box to Your Site

灰暗的星星灰暗的星星灰暗的星星灰暗的星星灰暗的星星
 
分类:技术文章

From this tutorial you’ll learn how to add simple search box to your site. It can be Google Search box  or Bing Search box.

zemez wordpress themes

Adding Google Search Box

When you don’t want a Search box to occupy too much space on your website, then you can add a small Google Search box on your page.

  <form method="get" action="http://www.google.cn/search">
  <div style="padding:4px;width:15em;">
  <table border="0" align="center" cellpadding="0">
  <tr><td>
  <input type="text" name="q" size="25" style="color:#808080;"
  maxlength="255" value="Google site search"
  onfocus="if(this.value==this.defaultValue)this.value=''; this.style.color='black';" onblur="if(this.value=='')this.value=this.defaultValue; "/>
  <input type="submit" value="Go!" />
  <input type="hidden" name="sitesearch" value="yoursite.com" /></td></tr>
  </table>
  </div>
  </form>

view rawbasic-google-search.html hosted with ❤ by GitHub

Notice, that you have to change yoursite.com in the code to your actual website address.

  <form method="get" action="http://www.google.cn/search">
  <div style="border:1px solid black;padding:4px;width:20em;">
  <table border="0" align="center" cellpadding="0">
  <tr><td>
  <input type="text" name="q" size="25"
  maxlength="255" value="" />
  <input type="submit" value="Google Search" /></td></tr>
  <tr><td align="center" style="font-size:75%">
  <input type="radio" name="sitesearch" value="" />The Web
  <input type="radio" name="sitesearch"
  value="yoursite.com" checked /> Only Your Site<br />
  </td></tr></table>
  </div>
  </form>

view rawgoogle-search-with-radio-buttons.html hosted with ❤ by GitHub

Don’t forget to change yoursite.com to your current domain name to make the Search box work properly.

google search box

Adding Bing Search Box
  <form method="get" action="http://www.bing.com/search">
  <div style="border:1px solid black;padding:4px;width:20em;">
  <table border="0" align="center" cellpadding="0">
  <tr><td>
  <input type="text" name="q" size="25"
  maxlength="255" value="" />
  <input type="submit" value="Bing Search" /></td></tr>
  <tr><td align="center" style="font-size:75%">
  <input type="radio" name="q1" value="" />The Web
  <input type="radio" name="q1"
  value="site:yoursite.com" /> Only Your Site<br />
  </td></tr></table>
  </div>
  </form>

view rawbing-search-box.html hosted with ❤ by GitHub

google search box