-
Notifications
You must be signed in to change notification settings - Fork 20
/
advanced.html
49 lines (44 loc) · 1.23 KB
/
advanced.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Advanced Search</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<ul class="navbar">
<li style="float:left">Foogle</li>
<li><a href="index.html">Back to Search</a></li>
</ul>
<h3>Advanced Search</h3>
<hr>
<form action="https://google.com/search">
<table class="text-input-table">
<tr><td><h4>Find pages with...</h4></td></tr>
<tr>
<td> All of these words: </td>
<td> <input name="as_q" type="text" class="searchbar-sm"> </td>
</tr>
<tr>
<td>This exact word or phrase: </td>
<td><input name="as_epq" type="text" class="searchbar-sm"></td>
</tr>
<tr>
<td> Any of these words: </td>
<td> <input name="as_oq" type="text" class="searchbar-sm"> </td>
</tr>
<tr>
<td>This exact word or phrase: </td>
<td><input name="as_epq" type="text" class="searchbar-sm"></td>
</tr>
<tr>
<td>None of these words: </td>
<td><input name="as_eq" type="text" class="searchbar-sm"> </td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Advanced Search" class="searchbutton"></td>
</tr>
</table>
</form>
</body>
</html>