-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
139 lines (124 loc) · 3.85 KB
/
popup.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<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>WOSE</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>
<span> w<span>rite</span> </span>
<span> o<span>nce</span> </span>
<span> s<span>earch</span> </span>
<span> e<span>verywhere</span> </span>
</h1>
</header>
<main>
<section class="visible" id="intro">
<form>
<input type="text" placeholder="Search..." id="input" />
<div class="colors">
<input type="radio" name="color" id="0" checked />
<input type="radio" name="color" id="1" />
<input type="radio" name="color" id="2" />
<input type="radio" name="color" id="3" />
<input type="radio" name="color" id="4" />
<input type="radio" name="color" id="5" />
<input type="radio" name="color" id="6" />
<input type="radio" name="color" id="7" />
<input type="radio" name="color" id="8" />
</div>
<h2>Selected Search Engines</h2>
<div class="engines-selector">
<input
type="checkbox"
name="engines"
id="engine-visualizer"
checked
disabled
/>
<label for="engine-visualizer" id="engine-visualizer-label"
>All</label
>
<input type="button" value="Edit" />
</div>
<input type="submit" value="Go" id="submit" />
</form>
</section>
<section class="hidden" id="search-engines">
<h2>Select Search Engines</h2>
<p class="hidden error">You must select at least 1 engine</p>
<!-- search engine checkboxes -->
<div class="search-engines-checkboxes">
<div>
<input
type="checkbox"
name="google"
id="google"
class="edit-engines"
checked
/>
<label for="google" id="engine-visualizer-label">Google</label>
<input
type="checkbox"
name="bing"
id="bing"
class="edit-engines"
checked
/>
<label for="bing" id="engine-visualizer-label">Bing</label>
<input
type="checkbox"
name="youtube"
id="youtube"
class="edit-engines"
checked
/>
<label for="youtube" id="engine-visualizer-label">YouTube</label>
</div>
<div>
<input
type="checkbox"
name="yahoo"
id="yahoo"
class="edit-engines"
checked
/>
<label for="yahoo" id="engine-visualizer-label">Yahoo</label>
<input
type="checkbox"
name="ecosia"
id="ecosia"
class="edit-engines"
checked
/>
<label for="ecosia" id="engine-visualizer-label">Ecosia</label>
<input
type="checkbox"
name="duckduckgo"
id="duckduckgo"
class="edit-engines"
checked
/>
<label for="duckduckgo" id="engine-visualizer-label"
>DuckDuckGo</label
>
</div>
</div>
<button class="continue">Continue</button>
</section>
</main>
<footer>
<p class="">
Creator
<a href="https://www.github.com/michalvargaa" target="_blank"
>@michalvargaa</a
>
</p>
</footer>
<script src="script.js"></script>
</body>
</html>