simplify-fractions/src/main/index.html

70 lines
2.7 KiB
HTML
Raw Normal View History

2021-03-26 01:48:55 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-02-28 16:50:44 +01:00
<meta name="author" content="Florine W. Dekker" />
2021-03-26 01:48:55 +01:00
<meta name="application-name" content="Simplify fractions" />
<meta name="description" content="Simplify fractions." />
<meta name="theme-color" content="#0033cc" />
<meta name="fwd:auto:show-main" />
<meta name="fwd:auto:autofocus" />
2022-11-21 22:05:33 +01:00
<meta name="fwd:nav:target" content="#nav" />
<meta name="fwd:nav:highlight-path" content="/Tools/Simplify Fractions/" />
<meta name="fwd:footer:target" content="#footer" />
<meta name="fwd:footer:vcs-url" content="https://git.fwdekker.com/tools/simplify-fractions/" />
<meta name="fwd:footer:version" content="v%%VERSION_NUMBER%%" />
<meta name="fwd:validation:load-forms" />
2021-03-26 01:48:55 +01:00
<title>Simplify fractions | FWDekker</title>
2022-11-21 22:05:33 +01:00
<link rel="stylesheet" href="https://static.fwdekker.com/lib/template/3.x.x/template.css?v=%%VERSION_NUMBER%%" />
<script async src="https://stats.fwdekker.com/count.js"
data-goatcounter="https://stats.fwdekker.com/count"></script>
2021-03-26 01:48:55 +01:00
</head>
<body>
2022-11-21 22:05:33 +01:00
<noscript class="fwd-js-notice">
<img src="https://stats.fwdekker.com/count?p=/tools/simplify-fractions/" alt="Counting pixel" />
2021-04-28 13:16:00 +02:00
<p>
2021-03-26 01:48:55 +01:00
This website does not function if JavaScript is disabled.
Please check the <a href="https://www.enable-javascript.com/">
instructions on how to enable JavaScript in your web browser</a>.
2021-04-18 16:47:16 +02:00
</p>
2021-03-26 01:48:55 +01:00
</noscript>
2022-11-21 22:05:33 +01:00
<nav id="nav"></nav>
<main class="container hidden">
<div role="document">
<section>
<header class="fwd-header">
<hgroup>
<h1><a href=".">Simplify Fractions</a></h1>
<h2>Simple web tool for simplifying fractions.</h2>
</hgroup>
</header>
<!-- Input -->
<form id="inputs">
2022-11-21 22:31:02 +01:00
<label for="numerator">Numerator</label>
<input type="number" id="numerator" min="-2147483647" max="2147483647" value="42" autofocus />
<small id="numerator-hint" data-hint-for="numerator"></small>
2021-03-26 01:48:55 +01:00
2022-11-21 22:31:02 +01:00
<label for="denominator">Denominator</label>
<input type="number" id="denominator" min="-2147483647" max="2147483647" value="7" />
<small id="denominator-hint" data-hint-for="denominator"></small>
2021-03-26 01:48:55 +01:00
</form>
2022-11-21 22:05:33 +01:00
<!-- Output -->
2021-03-26 01:48:55 +01:00
<span id="out"></span>
</section>
2022-11-21 22:05:33 +01:00
<footer id="footer"></footer>
2021-03-26 01:48:55 +01:00
</div>
</main>
2022-11-21 22:05:33 +01:00
<script src="https://static.fwdekker.com/lib/template/3.x.x/template.js?v=%%VERSION_NUMBER%%"></script>
2021-04-18 16:47:16 +02:00
<!--suppress HtmlUnknownTarget -->
2021-03-26 01:48:55 +01:00
<script src="bundle.js?v=%%VERSION_NUMBER%%"></script>
</body>
</html>