How to Embed Google Search

2020-04-30 15:45发布

问题:

I have always wondered how to embed Google on a webpage. Is it possible to put it in an iframe? I know that some websites use Google CSE, but I want the real Google. If so, how can I do this?

回答1:

You can embed this URL (aka https://www.google.com/webhp?igu=1&gws_rd=ssl) in an iframe without fail. The ?igu=1 is what makes it work. I found this answer from agoogleaday.com, which uses an iframe to house an experimental Google search website.

<iframe src="https://www.google.com/webhp?igu=1&gws_rd=ssl" width="640" height="480" frameborder="0">Your browser does not support <code>iframe</code>s. Please consider using a <a href="http://browsehappy.com/">modern</a> browser.</iframe>



回答2:

If you don't want the google logo and just the search box, you can use this:

<form target="_self" id="google" method="get" action="http://www.google.com/search" target="main" onsubmit="window.top.close();">
    <input name="q" id="google" placeholder="Google Search" size="40" maxlength="2000" value="" type="text" autofocus></input>
</form>



回答3:

You might want to check this- https://support.google.com/customsearch/answer/2630969?hl=en