-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvancedSearch.html
35 lines (30 loc) · 1.11 KB
/
advancedSearch.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Advanced Search</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="nav">
<a href="index.html">Google Search</a>
</div>
<br><br>
<form action="https://google.com/search">
<div class="grid-container">
<label>all these words:</label>
<input type="text" name="as_q" placeholder="all these words">
<br>
<label>this exact word or phrase:</label>
<input type="text" name="as_epq" placeholder="this exact word or phrase">
<br>
<label>any of these words:</label>
<input type="text" name="as_oq" placeholder="any of these words">
<br>
<label>none of these words:</label>
<input type="text" name="as_eq" placeholder="none of these words">
<br>
<input type="submit" value="Google Search">
</div>
</form>
</body>
</html>