-
Notifications
You must be signed in to change notification settings - Fork 0
/
globalSearch.html
75 lines (74 loc) · 2.49 KB
/
globalSearch.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Global Search Google</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
</head>
<body>
<div class="d-md-flex justify-content-md-end m-4">
<a href="index.html" class="btn btn-primary">Google</a>
</div>
<div class="container">
<h1 class="text-danger mb-5">Global Search</h1>
<form action="global">
<ul
class="list-inline d-flex justify-content-between align-items-center"
>
<li>Find pages <br />containing...</li>
<li class="text-secondary">
How to do it in the search field
</li>
</ul>
<ul
class="list-inline d-flex justify-content-between align-items-center"
>
<li class="w-25">all these words:</li>
<li>
<input type="text" name="as_q" />
</li>
<li class="w-25">Enter important words: tricolor ret-terrier</li>
</ul>
<ul
class="list-inline d-flex justify-content-between align-items-center"
>
<li class="w-25">exact word or phrase:</li>
<li><input type="text" name="as_epq" /></li>
<li class="w-25">
Put the exact words in quotation marks: "ret-terrier"
</li>
</ul>
<ul
class="list-inline d-flex justify-content-between align-items-center"
>
<li class="w-25">any of these words:</li>
<li><input type="text" name="as_oq" /></li>
<li class="w-25">
Type OR between all the words you want: miniature ORs standard
</li>
</ul>
<ul
class="list-inline d-flex justify-content-between align-items-center"
>
<li class="w-25">none of these words:</li>
<li><input type="text" name="as_eq" /></li>
<li class="w-25">
Put a minus sign in front of unwanted words: -rodent, -"Jack
Russell"
</li>
</ul>
<div class="d-md-flex justify-content-md-end m-4">
<button type="submit" class="btn btn-primary" form="global">
Global Search
</button>
</div>
</form>
</div>
</body>
</html>