Smashing has a list of common web page usability problems. Number 6 “No way to search” includes form code for Google or Yahoo site searching. Such as
<form action="http://www.google.com/search" method="get">
<fieldset>
<input type="hidden" name="sitesearch" value="smashingmagazine.com" />
<input type="text" name="q" size="31" maxlength="255" value="" />
<input type="submit" value="Google Search" />
</fieldset>
</form>
Post a Comment