-
Notifications
You must be signed in to change notification settings - Fork 0
/
advance.html
52 lines (47 loc) · 1.69 KB
/
advance.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
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Advance Google Search</title>
<link rel="stylesheet" href="advance_style.css">
</head>
<body>
<header>
<img src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png">
<div class="links">
<a href="index.html">Web search</a>
<a href="picture.html" style="margin-right: 10vw;">Images</a>
</div>
</header>
<h3>Advance Search</h3>
<div class="search">
<form action="https://www.google.com/search">
<div class="head">
<p>Find pages with...</p>
</div>
<div class="box">
<span>All these words</span>
<input type="text" name="as_q">
</div>
<div class="box">
<span>this exact word or phrase</span>
<input type="text" name="as_epq">
</div>
<div class="box" >
<span>any of these words:</span>
<input type="text" name="as_oq">
</div>
<div class="box">
<span>none of these words</span>
<input type="text" name="as_eq">
</div>
<div class="button" style="justify-content: flex-end;">
<input type="submit" value="Submit">
</div>
</form>
</div>
<footer>
<p>Project0 for CS50W</p>
<p>By Mohd Saif Ansari</p>
</footer>
</body>
</html>