-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexAdvanced.html
More file actions
43 lines (37 loc) · 1.29 KB
/
indexAdvanced.html
File metadata and controls
43 lines (37 loc) · 1.29 KB
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
<!doctype html>
<html lang="en">
<head>
<title>Search</title>
<link rel="stylesheet" href="static/index.css" />
</head>
<body>
<nav class="google-link-searchs">
<a href="index.html">Normal search</a>
<a href="indexAdvanced.html">Advanced search</a>
</nav>
<h1 style="color: red;">Advanced search</h1>
<form action="https://google.com/search" method="GET">
<div class="input-flex-container form-query-advanced">
<div class="input-item">
<label for="as_q">All these words:</label>
<input class="query-advanced" type="text" name="as_q" />
</div>
<div class="input-item">
<label for="as_epq">This exact word or phrase:</label>
<input class="query-advanced" type="text" name="as_epq" />
</div>
<div class="input-item">
<label for="as_oq">Any of these words:</label>
<input class="query-advanced" type="text" name="as_oq" />
</div>
<div class="input-item">
<label for="as_eq">None of these words:</label>
<input class="query-advanced" type="text" name="as_eq" />
</div>
<div class="button-query-advanced">
<input type="submit" value="Advanced search" />
</div>
</div>
</form>
</body>
</html>