mirror of
https://github.com/Baidicoot/rpncalc-v4
synced 2024-12-11 18:50:26 +00:00
31 lines
874 B
HTML
31 lines
874 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Meta Calculator</title>
|
|
</head>
|
|
<body>
|
|
<p id="out"></p>
|
|
<button id="1">1</button>
|
|
<button id="2">2</button>
|
|
<button id="3">3</button>
|
|
<button id="4">4</button>
|
|
<button id="5">5</button>
|
|
<button id="6">6</button>
|
|
<button id="7">7</button>
|
|
<button id="8">8</button>
|
|
<button id="9">9</button>
|
|
<button id="0">0</button>
|
|
<button id="push">push</button>
|
|
<button id="pop">pop</button>
|
|
<button id="zero">zero</button>
|
|
<br>
|
|
<button id="add">+</button>
|
|
<button id="sub">-</button>
|
|
<button id="mul">*</button>
|
|
<button id="div">/</button>
|
|
</body>
|
|
<script src="./test.rpn" type="text/rpncalc"></script>
|
|
<script src="./main.js" type="module"></script>
|
|
</html> |