-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvanced.html
48 lines (48 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advanced search</title>
<link rel="stylesheet" href="advanced.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div id="navbar">
<a href="advanced.html">Advanced search</a>
<a href="images.html">Image search</a>
</div>
<div id="logo">
<h2>
<span class="g">G</span><span class="oe">o</span><span id="o">o</span><span class="g">g</span><span id="l">l</span><span class="oe">e</span>
</h2>
</div>
<label id="header">Advanced Search</label>
<div id="divider"></div>
<div id="form">
<span>Find page with...</span>
<form action="https://google.com/search">
<fieldset>
<div class="form-group">
<label for="q">all these words:</label>
<input type="text" class="form-control" id="q" name="q">
</div>
<div class="form-group" class="label">
<label for="q" class="label">this exact word or phrase:</label>
<input id="q" type="text" name="as_epq" class="form-control">
</div>
<div class="form-group" class="label">
<label for="q" class="label">any of these words:</label>
<input id="q" type="text" name="as_oq" class="form-control">
</div>
<div class="form-group" class="label">
<label for="q">none of these words:</label>
<input id="q" type="text" name="as_eq" class="form-control">
</div>
<div class="form-group text-right">
<input type="submit" value="Advanced Search" class="btn btn-primary" id="btn">
</div>
</fieldset>
</form>
</div>
</body>
</html>