-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle_advance.html
60 lines (49 loc) · 1.72 KB
/
google_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
53
54
55
56
57
58
59
60
<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>
div {
margin: 10px;
padding: 5px;
border: rgb(72, 80, 83);
}
.menu > li {
display: inline;
padding: 3px;
}
</style>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<div class="container-fluid mt-0">
<ul class="menu">
<li><a class="mb-0 d-flex justify-content-end" href="index.html">Goole Search</a></li>
</ul>
<h1 class="mb-2 text-danger">Find pages with </h1>
<form action="https://google.com/search">
<div>
<label class="me-5" for="">all these words:</label>
<input type="text" name="as_q">
</div>
<div>
<label for="">this exact word or phrase:</label>
<input type="text" name="as_epq">
</div>
<div>
<label class="me-4" for="">any of these words:</label>
<input type="text" name="as_oq">
</div>
<div>
<label class="me-2" for="">none of these words:</label>
<input type="text" name="as_eq">
</div>
<div class="">
<input style= "float:right" class="justify-content-md-end btn btn-primary" type="submit" value="Advanced search">
</div>
</form>
</div>
</body>
</html>