-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
33 lines (29 loc) · 1.16 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="button.css">
</head>
<body>
<div>
<form action="">
<p>Choose a different scroll speed! (Bigger number with slower speed.)</p>
<input type="radio" id="100" name="speed" value="100" οnclick="getValue(this)">
<label for="100">100</label>
<input type="radio" id="200" name="speed" value="200" οnclick="getValue(this)">
<label for="200">200</label>
<input type="radio" id="300" name="speed" value="300" οnclick="getValue(this)">
<label for="300">300</label>
<input type="radio" id="500" name="speed" value="500" οnclick="getValue(this)">
<label for="500">500</label>
<input type="radio" id="1000" name="speed" value="1000" οnclick="getValue(this)">
<label for="1000">1000</label>
<input type="radio" id="2000" name="speed" value="2000" οnclick="getValue(this)">
<label for="2000">2000</label>
<br>
<br>
<button id="save">Save</button>
</form>
</div>
<script src="options.js"></script>
</body>
</html>