-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle_advanced_search.html
97 lines (88 loc) · 3.92 KB
/
google_advanced_search.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
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
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<title>Google Advanced search</title>
<link rel="stylesheet" href="style_adv_srch.css">
<link rel="icon" href="Google__G__Logo.png">
</head>
<body>
<div id="header">
<img src="google_logo.svg" alt="Google Logo" width="100px" height="90px">
</div>
<a class="link_top_right" href="index.html">Google search</a>
<div>
<h2 id="adv_srch_header">Advanced search</h2>
</div>
<hr>
<!-- Trying to use the grid appropriately -->
<form id="adv_form_grid" action="https://www.google.com/search">
<div>
<!-- I find it curious the names of classes and ids that actual web pages use (including google), so in this case
FPW stands for Find Pages With-->
<label class="FPW">Find pages with...</label>
</div>
<div></div>
<div>
<label id="todo_srch_box">To do this in the search box</label>
</div>
<div>
<label class="adv_label_left">all these words:</label>
</div>
<div>
<input class="adv_input" type="text" name="as_q" autofocus>
</div>
<div>
<label class="adv_label_right">Type the important words: <label class="monospace_words">tri-colour rat terrier</label>
</label>
</div>
<div>
<label class="adv_label_left">this exact word or phrase:</label>
</div>
<div>
<input class="adv_input" type="text" name="as_epq">
</div>
<div>
<label class="adv_label_right">Put exact words in quotes: <label class="monospace_words">"rat terrier"</label>
</label>
</div>
<div>
<label class="adv_label_left">any of these words:</label>
</div>
<div>
<input class="adv_input" type="text" name="as_oq">
</div>
<div>
<label class="adv_label_right">Type OR between all the words you want: <label class="monospace_words">miniature OR standard</label>
</label>
</div>
<div>
<label class="adv_label_left">none of these words:</label>
</div>
<div>
<input class="adv_input" type="text" name="as_eq">
</div>
<div>
<label class="adv_label_right">Put a minus sign just before words that you don't want:<br>
<label class="monospace_words">-rodent, -"Jack Russel"</label>
</label>
</div>
</form>
<input type="submit" class="adv_button" value="Advanced search" form="adv_form_grid">
<hr>
<label class="FPW" style="padding-left: 38px;">You can also...</label>
<ul style="list-style-type: none;">
<li><a class="links_below" href="https://support.google.com/websearch/answer/2466433?visit_id=637320839402630576-3128856991&p=adv_pages_similar&hl=en&rd=1">
Find pages that are similar to a URL</a>
</li>
<li><a class="links_below" href="https://support.google.com/websearch/answer/54068?p=adv_pages_visited&hl=en&visit_id=637320839402630576-3128856991&rd=1">
Search pages tha you've visited</a>
</li>
<li><a class="links_below" href="https://support.google.com/websearch/answer/2466433?visit_id=637320839402630576-3128856991&p=adv_operators&hl=en&rd=1">
Use operators in the search box</a>
</li>
<li><a class="links_below" href="https://www.google.com/preferences?hl=en">
Customize your search settings</a>
</li>
</ul>
</body>
</html>