-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadvanced_search.html
More file actions
25 lines (25 loc) · 900 Bytes
/
advanced_search.html
File metadata and controls
25 lines (25 loc) · 900 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Advanced Search</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<a href="image_search.html">Image Search</a>
<a href="search.html">Search</a>
<h1>Google Advanced Search</h1>
<h2>Find pages with...</h2>
<form action="https://google.co.uk/search">
<input type="text" name="as_q">
<input type="submit" value="all these words">
</form>
<form action="https://google.co.uk/search">
<input type="text" name="as_epq">
<input type="submit" value="this exact word or phrase">
</form>
<form action="https://google.co.uk/search">
<input type="text" name="as_oq">
<input type="submit" value="any of these words">
</form>
</body>
</html>