1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<base href="http://froogle.google.com/"/>
<title>Advanced Froogle Search</title>
</head>
<body>
<form method="get" action="http://froogle.google.com/froogle" name="f">
<table>
<tr>
<td>
<label for="as_q">Find what?</label>
<input id="as_q" type="text" value="" name="as_q" size="25"/>
</td>
<td>
<label for="as_epq">Exact Phrase</label>
<input id="as_epq" type="text" size="25" value="" name="as_epq"/>
</td>
<td>
<select id="cat" name="cat">
<option value="0" selected="selected">Any </option>
<option value="1">Apparel & Accessories</option>
<option value="1538">Arts &
Entertainment</option>
<option value="139">Auto & Vehicles</option>
<option value="155">Baby</option>
<option value="193">Books, Music & Video</option>
<option value="389">Computers</option>
<option value="433">Electronics</option>
<option value="522">Flowers</option>
<option value="527">Food & Gourmet</option>
<option value="627">Health & Personal
Care</option>
<option value="726">Home & Garden</option>
<option value="1085">Office</option>
<option value="1140">Sports & Outdoors</option>
<option value="1272">Toys & Games</option>
</select>
</td>
</tr>
<tr>
<td>
<label for="as_oq">Partial match</label>
<input id="as_oq" type="text" size="25" value="" name="as_oq"/>
</td>
<td>
<label for="as_eq">Not Containing</label>
<input id="as_eq" type="text" size="25" value="" name="as_eq"/>
</td>
<td>
<select id="num" name="num">
<option value="10" selected="selected">10
results</option>
<option value="20">20 results</option>
<option value="30">30 results</option>
<option value="50">50 results</option>
<option value="100">100 results</option>
</select>
</td>
</tr>
<tr>
<td>
<label for="limit">Price Limit</label>
<input id="limit" type="radio" name="price" value="under" checked="checked"/>
</td>
<td><label for="price0">Less than</label>
$
<input id="price0" size="6" value="" name="price0"/></td>
</tr>
<tr>
<td>Price Range
<input type="radio" name="price" value="between"/>
</td>
<td>$
<input id="price1" size="6" value="" name="price1"/>
and $
<input size="6" value="" name="price2"/>
</td>
</tr>
<tr>
<td colspan="3">
<input type="submit" name="btnG" value="Froogle Search"/>
</td>
</tr>
</table>
</form>
<p>
<a href="http://froogle.google.com/froogle/about.html">What
is Froogle?</a>
</p>
</body>
</html>
|