HTML - Simple Google site-search form
To include a simple search Google form on your html pages, that shows only results from your site (or any other domain you specify ) you can use the following snippet:
<form action="http://www.google.com/search" method="get"> <input type="text" maxlength="40" name="q" value=""> <input type="hidden" value="scriptcult.com" name="sitesearch"> <input type="submit" value="go"> </form>