-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadvanced.html
More file actions
33 lines (33 loc) · 1.28 KB
/
Copy pathadvanced.html
File metadata and controls
33 lines (33 loc) · 1.28 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
<html lang="en">
<head>
<title>Search</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" style="width: 100px;">
<div id="nav" class="nav">
<a href="index.html" class="link">Google Search</a>
</div>
<h1 style="color: rgb(167, 12, 12);">Advanced search</h1>
<form action="https://google.com/search" id="advanced" style="border-top: solid gray 1px;">
<p style="font-size: 1.2em;">Find pages with...</p>
<p>
<span>all these words:</span>
<input type="text" name="as_q">
</p>
<p>
<span>this exact word or phrase:</span>
<input type="text" name="as_epq">
</p>
<p>
<span>any of these words:</span>
<input type="text" name="as_oq">
</p>
<p>
<span>none of these words:</span>
<input type="text" name="as_eq">
</p>
<input type="submit" value="Advanced Search" class="bluebtn">
</form>
</body>