This repository was archived by the owner on May 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·87 lines (74 loc) · 3.43 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>DuckDuckGo Advanced Search</title>
<link rel="stylesheet" href="https://rawgit.com/amritpandeyy/flavoured.css/master/flavoured.css">
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<div class="container">
<form action="">
<div class="search-field">
<input type="text" class="search-input" id="search_bar" placeholder="Search">
<a href="#" class="search-btn" role="button" target="_blank" id="search_button">Search</a>
</div>
<div class="form-element-group" style="margin-bottom: 1.5rem;">
<label for="pre-config-search">Preconfigured Search: </label>
<select name="pre-config-search" id="pre-config-searchs">
<option value="Null">Select one</option>
<option value="stackoverflow.com">StackOverflow</option>
<option value="amazon.com">Amazon</option>
</select>
</div>
<fieldset>
<legend>Custom Search</legend>
<label for="strict">Strict Search</label>
<input type="checkbox" id="strict">
<label for="safe">Safe Search</label>
<input type="checkbox" id="safe">
<br>
<div class="form-element-group">
<label for="site_bar">Site: </label>
<input type="text" id="site_bar">
</div>
<div class="form-element-group">
<label for="inurl_bar">Terms in url: </label>
<input type="text" id="inurl_bar">
</div>
<div class="form-element-group">
<label for="intitle_bar">Terms in title: </label>
<input type="text" id="intitle_bar">
</div>
<div class="form-element-group">
<label for="filetype">Filetype: </label>
<select name="filetypes" id="filetype">
<option value="Null">None</option>
<option value="pdf">PDF</option>
<option value="doc">Doc</option>
<option value="ppt">PPT</option>
</select>
</div>
<div class="toggle-form-group">
<div class="form-element-group">
<input type="checkbox" id="toggle_exclude_site">
<label for="exclude_site_bar">Exclude site:</label>
<input type="text" id="exclude_site_bar" disabled="true">
</div>
<div class="form-element-group">
<input type="checkbox" id="toggle_exclude_term">
<label for="exclude_term_bar">Exclude term:</label>
<input type="text" id="exclude_term_bar" disabled="true">
</div>
</div>
</fieldset>
</form>
<br>
<b>Search history:</b>
<ul id="recent_search_list" class="recent-search-list"></ul>
</div>
<script async="true" src="main.js"></script>
</body>
</html>