-
Notifications
You must be signed in to change notification settings - Fork 0
/
advanced.html
37 lines (37 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, width=device-width">
<title>Advanced Search</title>
<link rel="stylesheet" href="advanced.css">
</head>
<body>
<header>
<ul>
<li><a href="index.html">Google Search</a></li>
</ul>
</header>
<form action="https://google.com/search">
<div class="advanced-row">
<p>all these words: </p>
<input class="search-bar" type="text" name="as_q" autocomplete="off">
</div>
<div class="advanced-row">
<p>this exact word or phrases: </p>
<input class="search-bar" type="text" name="as_epq" autocomplete="off">
</div>
<div class="advanced-row">
<p>any of these words: </p>
<input class="search-bar" type="text" name="as_oq" autocomplete="off">
</div>
<div class="advanced-row">
<p>none of these words: </p>
<input class="search-bar" type="text" name="as_eq" autocomplete="off">
</div>
<div class="button-container">
<button class="button" type="submit">Advanced search</button>
</div>
</form>
</body>
</html>