blob: 1a2704cff892b09f7faa04f3688f19fd7ec9d212 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>ZLG's Simple Stream Timer</title>
<link rel="stylesheet" type="text/css" href="./timer.css">
</head>
<body id="make_timer">
<header>
<h1>ZSST</h1>
<p>ZLG's Simple Stream Timer</p>
</header>
<section id="content">
<article class="intro">
<p>
Welcome! To get started, just customize a few options, found below, and press "Make my Timer"!
</p>
</article>
<article class="timer_maker">
<form action="./timer.html" method="get">
<section>
<label for="cdstyle">Countdown Style</label>
<input type="radio" id="cdstyle" name="cdstyle" value="standard">Standard Countdown</input>
<input type="radio" id="cdstyle" name="cdstyle" value="bar">Progress Bar</input>
<input type="radio" id="cdstyle" name="cdstyle" value="p5">Persona 5</input>
</section>
<section>
<label for="duration">Countdown Duration, in seconds</label>
<input name="duration" type="number" id="duration" min="10" value="60" required>
</section>
<section>
<label for="end_text">Text to Display at End of Countdown</label>
<input name="end_text" type="text" id="end_text">
</section>
<section>
<label for="f_family">Font Family (must be on your system already!)</label>
<input name="f_family" type="text" id="f_family">
</section>
<section>
<label for="f_color">Font Color</label>
<input name="f_color" type="color" id="f_color">
</section>
<section>
<label for="b_color">Bar Color</label>
<input name="b_color" type="color" id="b_color">
</section>
<section class="bottom">
<input type="submit" value="Make My Timer">
<input type="reset" value="Reset to Defaults">
</section>
</form>
</article>
</section>
<footer>
<p><a href="https://git.zlg.space/zsst"><abbr title="ZLG's Simple Stream Timer">ZSST</abbr></a> is written by <a href="https://zlg.space" title="Digital independence advocate and toolmaker.">ZLG</a></p>
</footer>
</body>
</html>
|