-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathADS.html
More file actions
49 lines (44 loc) · 1.11 KB
/
ADS.html
File metadata and controls
49 lines (44 loc) · 1.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
h1{
color: burlywood;
text-align: center;
}
h3{
color: black;
text-align: right;
}
.corner {
border-radius: 60px;
height: 25px;
width: 500px;
}
.GS{
height: 27px;
width: 150px;
border-radius: 5px;
background-color: rgb(212, 208, 208);
}
</style>
</head>
<body>
<h1>Isearch Advanced</h1>
<ul>
<li><form action="https://www.google.com/advanced_search">
<input type="text" class="corner" name="q">
<input type="submit" class="GS" value="all these words:">
</li>
<li><form action="https://www.google.com/advanced_search">
<input type="text" class="corner" name="q">
<input type="submit" class="GS" value="this exact word or phrase:">
</li>
</ul>
<h3><a href="index.html">Isearch</a></h3>
</body>
</html>