-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdvancedSearch.html
More file actions
78 lines (67 loc) · 2.89 KB
/
AdvancedSearch.html
File metadata and controls
78 lines (67 loc) · 2.89 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div>
<ul class="navbar-google">
<li class="navbar-item-google"><a href="search.html">Google</a></li>
</ul>
</div>
<h1 class="h1-advanced">Advanced Search</h1>
<div class="line">
<hr>
</div>
<div class="div-advanced">
<p class="h2-advanced">Find pages with...</p>
<form action="https://google.com/search">
<div class="row-input">
<div class="left">
<p>all these words:</p>
</div>
<div class="right">
<input type="text" name="q" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="">
</div>
</div>
<div class="row-input">
<div class="left">
<p>this exact word or phrase:</p>
</div>
<div class="right">
<input type="text" name="as_epq" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="">
</div>
</div>
<div class="row-input">
<div class="left">
<p>any of these words:</p>
</div>
<div class="right">
<input type="text" name="as_oq" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="">
</div>
</div>
<div class="row-input">
<div class="left">
<p>none of these words:</p>
</div>
<div class="right">
<input type="text" name="as_eq" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="">
</div>
</div>
<div class="row-input">
<div class="left">
<p>numbers ranging from:</p>
</div>
<div class="right">
<input type="text" name="q" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="">
</div>
</div>
<div class="btn-div">
<input type="submit" value="Advanced Search" class="btn btn-advanced">
</div>
</form>
</div>
</body>
</html>