-
Notifications
You must be signed in to change notification settings - Fork 0
/
adv.html
46 lines (44 loc) · 1.72 KB
/
adv.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="buttons">
<button onclick="location.href='index.html'" type="button">Google Search</button>
</div>
<div class="container-adv">
<img class="center" src="logo.png" alt="logo">
<form action="https://google.com/search">
<div class="search-options">
<h2>
Find pages with...
</h2>
<div class="asq">
<label>all these words:</label>
<input id="bar" type="text" name="as_q">
</div>
<div class="asepq">
<label>this exact word or phrase:</label>
<input id="bar" type="text" name="as_epq">
</div>
<div class="asoq">
<label>any of these words:</label>
<input id="bar" type="text" name="as_oq">
</div>
<div class="aseq">
<label>none of these words:</label>
<input id="bar" type="text" name="as_eq">
</div>
<div class="submission" style="margin:3px">
<label></label>
<div class="advanced-sub" style="text-align: right">
<input class="advanced-btn" type="submit" value="Advanced Search">
</div>
</div>
</div>
</form>
</div>
</body>
</html>