Skip to content

Instantly share code, notes, and snippets.

View mininxd's full-sized avatar
💀
💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀

Minin mininxd

💀
💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀💀
View GitHub Profile
@sheabunge
sheabunge / google-search-form.html
Created October 1, 2012 09:58
Add a Google Search form to your website
<!--
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>