diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2024-01-05 23:18:49 -0500 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2024-01-05 23:18:49 -0500 |
| commit | bd5a00c61b355c857b5c99323592ca432dea5d0a (patch) | |
| tree | 7e8ac7730527c1ad71e3fdac85840948fd23f45f /htmx/static/pico-1.5.11/docs/src/progress.html | |
| parent | c71b37eb23d4c8af7ab983de34c6da5be9363f3a (diff) | |
| download | paste-bd5a00c61b355c857b5c99323592ca432dea5d0a.tar.gz paste-bd5a00c61b355c857b5c99323592ca432dea5d0a.tar.xz | |
wip
Diffstat (limited to 'htmx/static/pico-1.5.11/docs/src/progress.html')
| -rw-r--r-- | htmx/static/pico-1.5.11/docs/src/progress.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/htmx/static/pico-1.5.11/docs/src/progress.html b/htmx/static/pico-1.5.11/docs/src/progress.html new file mode 100644 index 0000000..e5ce1e2 --- /dev/null +++ b/htmx/static/pico-1.5.11/docs/src/progress.html @@ -0,0 +1,48 @@ +<!doctype html> +<html lang="en"> + <head> + ${require('./_head.html') + title=`Progress` + description=`Progress bar element in pure HTML, without JavaScript.` + canonical=`progress.html` + } + </head> + + <body> + ${require('./_nav.html')} + + <main class="container" id="docs"> + ${require('./_sidebar.html') active=`progress-link`} + + <div role="document"> + <section id="progress"> + <hgroup> + <h1>Progress</h1> + <h2>Progress bar element in pure HTML, without JavaScript.</h2> + </hgroup> + <article aria-label="Progress bar example"> + <progress value="25" max="100"></progress> + <footer class="code"> + +<pre><code><<b>progress</b> <i>value</i>=<u>"25</u>" <i>max</i>=<u>"100"</u>></<b>progress</b>></code></pre> + + </footer> + </article> + <p>A progress bar without a <code><b>value</b></code> attribute is indeterminate.</p> + <article aria-label="Indeterminate progress bar example"> + <progress></progress> + <footer class="code"> + +<pre><code><<b>progress</b>></<b>progress</b>></code></pre> + + </footer> + </article> + </section> + + ${require('./_footer.html')} + + </div> + </main> + <script src="js/commons.min.js"></script> + </body> +</html> |
