-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
42 lines (42 loc) · 1.27 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
<!DOCTYPE html>
<html style="overflow: auto">
<head>
<script src="popup.js"></script>
</head>
<body style="min-width: 400px; height: 200px; padding: 15px">
<label>Tags: </label><br />
<input type="radio" name="tags" value="css3">
<label>css3</label>
<input type="radio" name="tags" value="design">
<label>design</label>
<input type="radio" name="tags" value="el">
<label>el</label>
<input type="radio" name="tags" value="go">
<label>go</label>
<br />
<input type="radio" name="tags" value="hk">
<label>hk</label>
<input type="radio" name="tags" value="html5">
<label>html5</label>
<input type="radio" name="tags" value="js">
<label>js</label>
<input type="radio" name="tags" value="mobile">
<label>mobile</label>
<br />
<input type="radio" name="tags" value="cr">
<label>cr</label>
<input type="radio" name="tags" value="rb" checked>
<label>rb</label>
<input type="radio" name="tags" value="tool">
<label>tool</label>
<input type="radio" name="tags" value="web">
<label>web</label>
<input type="radio" name="tags" value="ops">
<label>ops</label>
<br />
<br />
<button id="button">GET The Juice!</button>
<hr />
<pre id="output"></pre>
</body>
</html>