-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
73 lines (71 loc) · 1.91 KB
/
index.htm
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<meta charset=utf-8>
<meta content="width=device-width,initial-scale=1" name=viewport>
<title>Math.htm</title>
<link href=../common/css/core.css rel=stylesheet>
<textarea class=medium id=calculator></textarea>
<div class=big id=result></div>
<div class=medium id=result-formatted></div>
<button id=calculate type=button>Calculate</button><button id=clear type=button>Clear</button><button id=euler type=button>e</button><button id=pi type=button>π</button>
<table>
<tr>
<td>Principal
<td><input id=principal step=any type=number>
<tr>
<td>Interest
<td><input id=interest step=any type=number>
<tr>
<td>Compound
<td><input id=compound type=checkbox>
<tr>
<td>Time
<td><input id=time step=any type=number>
<tr>
<td>Minimum Decimals
<td><input id=decimals-min min=0 step=1 type=number>
<tr>
<td><button id=calculate-interest type=button>Calculate Interest</button>
<td id=result-interest>
</table>
<table>
<tr class=header>
<td>Type
<td>Width
<td>Height
<tr>
<td>Aspect Ratio
<td><input id=ratio-width step=any type=number>
<td><input id=ratio-height step=any type=number>
<tr>
<td>Resolution
<td><input id=width step=any type=number>
<td><input id=height step=any type=number>
</table>
<table>
<tr class=header>
<td>Percentages
<td><button id=calculate-percent type=button>Calculate Percent</button>
<tr>
<td>Step End
<td><input id=step-end step=any type=number>
<tr>
<td>Step Interval
<td><input id=step-interval step=any type=number>
<tr>
<td>Step Limit
<td><input id=step-limit step=1 type=number>
<tr>
<td>Step Start
<td><input id=step-start step=any type=number>
</table>
<table>
<thead>
<tr class=header>
<td>Step
<td>Total
<td>Step%
<td>Total%
<tbody id=result-percent>
</table>
<script src=../common/js/core.js></script>
<script src=repo.js></script>