Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Like <a href="http://www.askdavetaylor.com/how_can_i_add_a_google_search_box_to_my_web_site.html" rel="nofollow noreferrer">this</a></p> <pre><code>&lt;form method="get" action="http://www.google.com/search"&gt; &lt;div style="border:1px solid black;padding:4px;width:20em;"&gt; &lt;table border="0" cellpadding="0"&gt; &lt;tr&gt;&lt;td&gt; &lt;input type="text" name="q" size="25" maxlength="255" value="" /&gt; &lt;input type="submit" value="Google Search" /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td align="center" style="font-size:75%"&gt; &lt;input type="checkbox" name="sitesearch" value="askdavetaylor.com" checked /&gt; only search Ask Dave Taylor&lt;br /&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt; &lt;/div&gt; &lt;/form&gt; </code></pre> <p>For displaying the results in a separate frame, you have <a href="http://www.cfhunt.com/" rel="nofollow noreferrer">this site</a> as an example.</p> <p>That would be something along the lines of:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Language" content="en-gb"&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=windows-1252"&gt; &lt;script language="javascript" type="text/javascript"&gt; function showFrame () { var e = document.getElementById("if1"); e.style.visibility = "visible" ; } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt; &lt;span id="spSearch" onclick="showFrame()"&gt;Search&lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;iframe name="I1" id="if1" width="100%" height="254" style="visibility:hidden" src="http://www.google.co.uk"&gt; Your browser does not support inline frames or is currently configured not to display inline frames. &lt;/iframe&gt;&lt;/p&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload