|
If you desire the ability for the public to search your web site, one option available is Google's Free SiteSearch. With Google's SiteSearch, a search box (such as on the one below) can be used in your web page. If you use this feature, you must abide by Google's terms.
Below is the HTML code used to create the above search box. If you so desire, you can copy and paste this code into the BODY of your HTML source code.
<!-- Search Google -->
<FORM method="get" action="http://www.google.com/custom">
<input type="hidden" name="domains" value="StCloudDiocese.org">
<INPUT type="hidden" name="cof" VALUE="LW:759;L:http://www.StCloudDiocese.org/assets/images/headgraphics/se
ason1.gif;LH:66;BGC:#FFFFCC;AH:left;GL:1;AWFID:6e6d7315470e0d16;">
<input type="hidden" name="sitesearch" value="StCloudDiocese.org">
<p>Search our site with <a href="http://www.google.com/"><img src="http://www.google.com/logos/Logo_25wht.gif" border="0" width="75" height="32" alt="Google logo" id="googlelogo"></a><br>
<INPUT type="text" name="q" size="21" maxlength="255"><INPUT type="submit" name="sa" VALUE="Search"></p>
</FORM>
<!-- Search Google -->
The above code uses a little bit of CSS (Cascading Style Sheet). Therefore, you may also want to place this code into the HEAD of your HTML source code.
<STYLE TYPE="text/css">
img#googlelogo { vertical-align: middle }
</STYLE>
|