diff options
Diffstat (limited to 'make_timer.html')
-rw-r--r-- | make_timer.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/make_timer.html b/make_timer.html new file mode 100644 index 0000000..10a2da4 --- /dev/null +++ b/make_timer.html @@ -0,0 +1,47 @@ +<!DOCTYPE html> +<html> + <head> + <title>ZLG's Simple Stream Timer</title> + <link rel="stylesheet" type="text/css" href="./timer.css"> + </head> + <body> + <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="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 class="bottom"> + <input type="submit" value="Make My Timer"> + <input type="reset" value="Reset to Defaults"> + </section> + </form> + </article> + </section> + <footer> + <p>ZSST is written by <a href="https://zlg.space" title="Digital independence advocate and toolmaker.">ZLG</a></p> + </footer> + </body> +</html> |