-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle_advanced_search.html
executable file
·53 lines (53 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Google Advanced Search!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="body_container">
<div class="header">
<div class="form-container">
<a class="links" href="index.html">Google Search</a>
</div>
</div>
<div class="advanced-form-container">
<div>
<form action="https://www.google.com/search">
<label>Find pages with...</label>
<div class="row">
<div class="column left">
<label for="all_words">all these words:</label>
</div>
<div class="column right">
<input type="text" id="all_words" name="as_q">
</div>
<div class="column left">
<label for="exact_word">this exact word or phrase:</label>
</div>
<div class="column right">
<input type="text" id="exact_word" name="as_epq">
</div>
<div class="column left">
<label for="any_word">any of these words:</label>
</div>
<div class="column right">
<input type="text" id="any_word" name="as_oq">
</div>
<div class="column left">
<label for="none_word">none of these words:</label>
</div>
<div class="column right">
<input type="text" id="none_word" name="as_eq">
</div>
<input id="submit-advanced-search" type="submit" value="Google Advanced Search">
</div>
</form>
</div>
</div>
<div class="footer">
<a href="/~https://github.com/Ziga12341/">Made by: Ziga12341</a>
</div>
</div>
</body>
</html>