diff options
author | zlg <zlg@zlg.space> | 2023-04-01 23:41:02 -0700 |
---|---|---|
committer | zlg <zlg@zlg.space> | 2023-04-01 23:41:02 -0700 |
commit | 776605926111b462bba2d397b150b0447da8b6d9 (patch) | |
tree | 662e432e52faf395dcb6921971e92f4cdbcfa19d /make_timer.html | |
download | zsst-776605926111b462bba2d397b150b0447da8b6d9.tar.gz zsst-776605926111b462bba2d397b150b0447da8b6d9.tar.bz2 zsst-776605926111b462bba2d397b150b0447da8b6d9.tar.xz zsst-776605926111b462bba2d397b150b0447da8b6d9.zip |
Initial commit
This is a simple streaming timer meant to be hooked up to OBS and
customized using a separate CSS file.
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> |