Web Widgets: Search
If you have a complex website with many documents, you can add a search
engine to your website that will provide better access to the materials. In
order to do this, you will need to edit some HTML. The line you need to change
is the line that in Example #1 says:
<input
type="hidden" name="as_sitesearch"
value="www.wesleyan.edu/its">
where you should change www.wesleyan.edu/its
to the URL of the site that you wish to search.
Example # 1
|
|
HTML Code
|
|
<table width="200">
<tr>
<form method="get" action="http://www.google.com/u/wesleyan">
<td width="171" bgcolor="#F4F4F4">
<center>
<input type=hidden name=as_sitesearch value="www.wesleyan.edu/its">
<input type="hidden" name="domains" value="www.wesleyan.edu">
<font face="arial" color="#990000" size="2">Search:</font>
<INPUT class="altTextField" size="14" name="q"></center>
<div align="right">
<input type="image" name="btnG" src="../go.gif" width="34"
height="26">
</div>
</td>
</form>
</tr>
</table>
|
|