mcalc/index.html

21 lines
475 B
HTML

<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>mcalc</title>
</head>
<body>
<label for="expr">Expression</label>
<input id="expr" required type="text" />
<label for="modulus">Modulus</label>
<input id="modulus" required type="number" min="1" step="1" />
<button id="enter" type="button">Enter</button>
<output id="result" for="expr modulus"></output>
<script type="module" src="main.js"></script>
</body>
</html>