forked from RishiRaj22/coding_shout
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.html
53 lines (53 loc) · 1.08 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head><title>Codechef shout</title></head>
<style>
* {
padding: 3px;
}
a {
padding: 0px;
}
select {
min-width: 100%;
}
#status {
clear: both;
height: 20px;
width: 100%;
text-align: center;
margin: 0 auto;
}
button {
clear: both;
width: 100%;
margin: 5px auto;
}
p {
clear:both;
width: 100%;
margin: 5px auto;
text-align: center;
}
</style>
<body>
<div>
<p>Alert type</p>
<select id="sound">
<option value="tts">Text to speech</option>
<option value="ping">Notification</option>
</select>
</div>
<div>
<p>Speak (if TTS is enabled)</p>
<select id="type">
<option value="status">Status</option>
<option value="all">Status + Points + Time</option>
</select>
</div>
<div id="status"></div>
<button id="save">Save</button>
By <a id="author" href="#">Rishi Raj</a> · <a id="github" href="#">Source code</a>
<script src="options.js"></script>
</body>
</html>