-
Notifications
You must be signed in to change notification settings - Fork 0
/
adv_search.html
37 lines (36 loc) · 1.38 KB
/
adv_search.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="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/75bc2abf7c.js" crossorigin="anonymous"></script>
<title>Advanced Search</title>
</head>
<body>
<div id="navbar">
<a href="index.html">Google Search</a>
</div>
<div id="adv_search">
<form action="https://www.google.com/search">
<div class="adv_input">
<label for="as_q">All these words:</label>
<input type="text" name="as_q">
</div>
<div class="adv_input">
<label for="as_epq">This exact word or phrase:</label>
<input type="text" name="as_epq">
</div>
<div class="adv_input">
<label for="as_oq">Any of these words:</label>
<input type="text" name="as_oq">
</div>
<div class="adv_input">
<label for="as_eq">None of these words:</label>
<input type="text" name="as_eq">
</div>
<input id= "adv_submit" type="submit" value="Advanced Search">
</form>
</div>
</body>
</html>