-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 979 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<title>RPNjs</title>
<link rel="stylesheet" href="rpn.css">
</head>
<body>
<div class="stack">
<div class="stackObject obj0">...</div>
</div>
<div class="deg">rad</div>
<div class="keyboard">
<span class="key">j</span> sin | <span class="key">k</span> cos | <span class="key">l</span> tan | <span class="key">u</span> arcsin | <span class="key">i</span> arccos | <span class="key">o</span> arctan | <span class="key">@</span> deg<->rad
<br/>
<span class="key">s</span> Square | <span class="key">r</span> Square Root | <span class="key">R</span> Nth Root | <span class="key">p</span> π | <span class="key">t</span> 2π | <span class="key">z</span> Undo | <span class="key">c</span> Clear
</div>
<div class="copyright">
RPNjs<br/>
Paul Hollinsky 2016
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="rpn.js"></script>
</html>