-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvanced.html
72 lines (60 loc) · 2.32 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Gloone Advanced Search</title>
</head>
<body>
<nav>
<div class="nav-logo">
<a href="index.html">
<img src="Gloone.png" alt="logo" height="24px">
</a>
</div>
<div class="nav-links">
<a href="index.html">Search</a>
<a href="images.html">Images</a>
</div>
</nav>
<!-- form with for input fields
Header: "Find pages with…"
-->
<form>
<div>
<label class="title">Advanced Search</label>
<div class="line"></div>
<div>
<div class="adv-form">
<div class="subtitle">
Find pages with...
</div>
<form class="adv-form-flex">
<div class="adv-form-fields">
<label for="all_words">all these words:</label>
<input class="adv-textinput" type="text" name="q">
</div>
<div class="adv-form-fields">
<label for="exact_word">this exact word or phrase:</label>
<input class="adv-textinput" type="text" name="as_epq">
</div>
<div class="adv-form-fields">
<label for="any_words">any of these words:</label>
<input class="adv-textinput" type="text" name="as_oq">
</div>
<div class="adv-form-fields">
<label for="none_words">none of these words:</label>
<input class="adv-textinput" type="text" name="as_eq">
</div>
<div class="adv-form-button">
<input class="blue-buttons" type="submit" value="Advanced Search" formaction="https://google.com/search">
</div>
</form>
</div>
</div>
</div>
</form>
</body>
</html>