-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle_adv.html
82 lines (79 loc) · 2.99 KB
/
google_adv.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<html>
<head>
<title>Google Clone</title>
<link rel="stylesheet" href="styles2.css">
<script src="https://kit.fontawesome.com/ea6d4fec5e.js" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<ul class="r_nav">
<li><a href="index.html" style="color: antiquewhite"><h2>Back To Google</h2></a></li>
</ul>
<ul class="l_nav">
<li>
<a href="https://www.google.com">
<img src="google_pic.png" alt="Google Home Page" width="170px" height="70px"/>
</a>
</li>
</ul>
</nav>
<div id="a">
<h3>Advanced Search</h3>
</div>
<hr>
<section class="b">
<br>
<form action="https://www.google.com" >
<div id="b1">
<label>Find pages with...</label><br><br>
<label for="allwords">all these words: </label>
<input type="text" id="allwords" name="allwords">
<br><br>
<label for="phrase">this exact word or phrase: </label>
<input type="text" id="phrase" name="phrase">
<br><br>
<label for="anywords">any of these words: </label>
<input type="text" id="anywords" name="anywords">
<br><br>
<label for="nonewords">none of these words:</label>
<input type="text" id="nonewords" name="nonewords">
<br><br>
<label for="num">numbers ranging from: </label>
<input type="number" id="num" name="num">
<label for="to"> to</label>
<span> </span>
<input type="number" id="to" name="num">
<br><br>
<input type="submit" value="Advanced Search" onclick="https://www.google.com/" >
</div>
</form>
</section>
<footer>
<ul class="l_ftr">
<li>
<a href="https://en.wikipedia.org/wiki/India">India</a>
</li>
<li>
<a href="https://about.google/?utm_source=google-IN&utm_medium=referral&utm_campaign=hp-footer&fg=1">About</a>
</li>
<li>
<a href="https://ads.google.com/intl/en_in/home/?subid=ww-ww-et-g-awa-a-g_hpafoot1_1!o2&utm_source=google.com&utm_medium=referral&utm_campaign=google_hpafooter&fg=1">Advertising</a>
</li>
<li>
<a href="https://www.google.com/intl/en_in/business/">Bussiness</a>
</li>
</ul>
<ul class="r_ftr">
<li>
<a href="https://policies.google.com/privacy?hl=en-IN&fg=1">Privacy</a>
</li>
<li>
<a href="https://policies.google.com/terms?hl=en-IN&fg=1">Terms</a>
</li>
<li>
<a href="https://support.google.com/accounts/answer/3118621?hl=en">Settings</a>
</li>
</ul>
</footer>
</body>
</html>