initial commit
This commit is contained in:
20
index.html
Normal file
20
index.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user