-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasearch.html
38 lines (37 loc) · 1.22 KB
/
asearch.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Advanced Search</title>
<link rel="stylesheet" href="styles.css"
</head>
<body>
<div>
<nav>
<ul>
<li><a href="index.html">Regular Search</a></li>
</ul>
</nav>
</div>
<form action="https://google.com/search" method="get" class="advanced">
<div style="margin-bottom: 10px;">
<label>all these words:</label>
<input type="text" name="as_q">
</div>
<div style="margin-bottom: 10px;">
<label>this exact word or phrase:</label>
<input type="text" name="as_epq">
</div>
<div style="margin-bottom: 10px;">
<label>any of these words:</label>
<input type="text" name="as_oq">
</div>
<div style="margin-bottom: 10px;">
<label>none of these words:</label>
<input type="text" name="as_eq">
</div>
<div style="float: right;">
<input type="submit" value="Advanced Search" id="advanced">
</div>
</form>
</body>
</html>