Created
October 1, 2012 09:58
-
-
Save sheabunge/3810646 to your computer and use it in GitHub Desktop.
Add a Google Search form to your website
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
See: http://bungeshea.com/easy-google-search-form/ | |
Remember to replace 'example.com' with the domain of your site. | |
--> | |
<form action="http://www.google.com/search" method="get"> | |
<input type="hidden" name="q" value="site:http://example.com"> | |
<input type="text" name="q" alt="search"> | |
<input type="submit" value="Search"> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment