generated from Kur1sut1na/Project0-2021
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadvanced.html
66 lines (66 loc) · 2.72 KB
/
advanced.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="header">
<div class="header-advanced-logo">
<a href="index.html">
<img src="img/baidusearch.png" alt="Baidu logo" />
</a>
</div>
<div class="header-links" style="padding: 5px;">
<a href="index.html">Baidu Search</a>
<a href="image.html">Baidu Images</a>
</div>
</div>
<div class="separator-line"></div>
<div class="appbar">
<label>Advanced Search</label>
</div>
<div class="separator-line"></div>
<div class="advanced-search-container">
<form action="https://www.baidu.com/s" name="f1" target="_blank">
<label>Find pages with...</label>
<div class="whitespace"></div>
<label class="todo">To do this in the search box.</label>
<div class="form-group">
<label>all these words:</label>
<input type="text" name="q1">
<div class="clarification">
Type the important words: <span class="diffont">tri-colour rat terrier</span>
</div>
</div>
<div class="form-group">
<label>this exact word or phrase:</label>
<input type="text" name="q2">
<div class="clarification">
Put exact words in quotes: <span class="diffont">"rat terrier"</span>
</div>
</div>
<div class="form-group">
<label>any of these words: </label>
<input type="text" name="q3">
<div class="clarification">
Type OR between all the words you want: <span class="diffont">miniature OR standard</span>
</div>
</div>
<div class="form-group">
<label>none of these words:</label>
<input type="text" name="q4">
<div class="clarification">
Put a minus sign just before words that you don't want: <span class="diffont">-rodent, -"Jack Russell"</span>
</div>
</div>
<div class="form-group">
<label></label>
<div class="right-align">
<input type="image" class="search-button" src="img/baidu.png">
</div>
</div>
</form>
</div>
</body>
</html>