-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.html
executable file
·43 lines (39 loc) · 998 Bytes
/
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
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<style>
@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);
body {
width : 520px;
min-height:250px;
font-size : 18px;
font-family: "Nanum Gothic", sans-serif;
}
</style>
<script src="option.js"></script>
</head>
<body style='text-align: center'>
<b>Settings Page</b>
<br><br>Input Text<input type="text" id="tellstring" size="100">
<br><br>Lowest Score:
<select id="lowest">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<br>Highest Score:
<select id="highest" value="5">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<br><br>
<button id="save">Save</button>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>